Index: boost/test/utils/lazy_ostream.hpp =================================================================== --- boost/test/utils/lazy_ostream.hpp (revision 60623) +++ boost/test/utils/lazy_ostream.hpp (working copy) @@ -45,7 +45,7 @@ // actual printing interface; to be accessed only by this class and children virtual std::ostream& operator()( std::ostream& ostr ) const { return ostr; } protected: - explicit lazy_ostream( bool empty = true ) : m_empty( empty ) {} + explicit lazy_ostream( bool p_empty = true ) : m_empty( p_empty ) {} // protected destructor to make sure right one is called #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582))