$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jeff Garland (jeff_at_[hidden])
Date: 2006-05-07 17:04:23
george wrote:
> hello!
>
>...snip details...
>
> .../boost/date_time/constrained_value.hpp:
> In member function âvirtual bool Reservation::validation(std::string&)â:
> .../boost/date_time/constrained_value.hpp:64:
> warning: âyear$D34041$value_â is used uninitialized in this function
> .../date_time/constrained_value.hpp:64:
> warning: âyear$D34041$value_â is used uninitialized in this function
>
>
>
> why I get this warning?
> any idea?
The compiler is correct, it's coming from the library where it indicates
-- it can be safely ignored. It's only not initialized in the error
path where an exception will be thrown and the value isn't used.
Jeff