Hello, I just started using the date-time library and it is a great library. There are a few warnings that I have noticed so far that could be avoided with some explicit casts. I am using VC .NET 2003. Here are the ones I've noticed so far: in microsec_time_clock.hpp on line 102 which reads: boost::uint32_t sub_sec = (filetime % 10000000) / 10; // microseconds same file, line 118 which reads: int adjust = resolution_traits_type::res_adjust()/1000000; in time_system_counted.hpp on line 57 which reads: typename calendar_type::date_int_type dc = day_count(); in date_parsing.hpp on line 211 which reads: ss << ss.narrow(*beg++, 'X'); // 'X' will cause exception to be thrown Thanks, John
On Thu, 27 Jan 2005 19:28:53 -0500, John Eddy wrote
Hello,
I just started using the date-time library and it is a great library.
Thanks.
There are a few warnings that I have noticed so far that could be avoided with some explicit casts. I am using VC .NET 2003.
Yes, thanks. Turns out it's hard for us to see these because warnings have come out in the regression tests. I notice these still aren't coming out -- I assume this is warning level 4? We'll take care of them, eventually. Some of this code is being redone for 1.33... Jeff
participants (2)
-
Jeff Garland
-
John Eddy