
20 Mar
2008
20 Mar
'08
2:29 p.m.
(repost)
Release Candidate 1 is available at http://boost.cowic.de/rc/
C++ Builder 2007 (0x593, the latest) and boost::format produces an useless warning in boost/format/alt_sstream_impl.hpp. The warning is W8072 ("suspicious pointer conversion") and occures on four places in the file. It could be safely supressed by adding: ------------- #include <boost/detail/workaround.hpp> #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x593)) # pragma warn -8072 // CG 2007: suspicious pointer conversion; on several places within the file #endif ----------- on the top of the file and ----------- #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x593)) # pragma warn +8072 #endif ----------- on the bottom of the file. /Pavel