From 456ea98bb6ec5287cdfef7de10bbc7109273751f Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Fri, 11 Jun 2010 13:55:31 +0000 Subject: [PATCH] Fix -Wshadow warnings. Fixes #4017 [SVN r62799] --- include/boost/test/utils/lazy_ostream.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/test/utils/lazy_ostream.hpp b/include/boost/test/utils/lazy_ostream.hpp index 0d8fd449..646c0714 100644 --- a/include/boost/test/utils/lazy_ostream.hpp +++ b/include/boost/test/utils/lazy_ostream.hpp @@ -47,7 +47,7 @@ public: // 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 ) {} private: // Data members