$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] boost::posix_time::from_time_t bug ???
From: Igor R (boost.lists_at_[hidden])
Date: 2009-05-01 11:48:10
IMHO, the output is correct.
Outputs local time:
> Â Â Â Â Â Â Â std::cout << "time_t: " << ctime( &t ) << std::endl;
Outputs local time:
> Â Â Â Â Â Â Â struct tm* t2 = localtime( &t );
> Â Â Â Â Â Â Â std::cout << "struct tm: " << asctime( t2 ) << std::endl;
Outputs GMT time:
> Â Â Â Â Â Â Â ptime t3 = from_time_t( t );
>
> Â Â Â Â Â Â Â std::cout << "ptime from time_t: " << to_simple_string( t3 ) <<
> std::endl;
Outputs local time:
> Â Â Â Â Â Â Â ptime t4 = ptime_from_tm( *t2 );