$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Torjo (john.lists_at_[hidden])
Date: 2004-02-26 12:26:30
In date_time library, compiler_config.hpp, at line 53:
// workaround for errors associated with wide string output
// modifications. compilers affected are:
// Borland 551, gcc295 (not stlport), msvc6, mingw
// Any of these compilers *should* work if used with StlPort's streams
#if ((defined(__GNUC__) && (__GNUC__ < 3)) || \
(defined(_MSC_VER) && (_MSC_VER <= 1200)) || \
(defined(__MINGW32__)) || \
(defined(__BORLANDC__) && (__BORLANDC__ <= 0x0551))) && \
!defined(_STLP_OWN_IOSTREAMS)
#define BOOST_DATE_TIME_NO_WSTRING_CONVERSIONS
#endif
As a side note, the bug appears for VC7.1 as well, so you should update
for this as well.
Best,
John