Index: boost/assign/assignment_exception.hpp =================================================================== --- boost/assign/assignment_exception.hpp (revision 48662) +++ boost/assign/assignment_exception.hpp (working copy) @@ -25,8 +25,8 @@ class assignment_exception : public std::exception { public: - assignment_exception( const char* what ) - : what_( what ) + assignment_exception( const char* _what ) + : what_( _what ) { } virtual const char* what() const throw() Index: boost/assign/list_inserter.hpp =================================================================== --- boost/assign/list_inserter.hpp (revision 48662) +++ boost/assign/list_inserter.hpp (working copy) @@ -40,7 +40,7 @@ std::size_t sz; T val; - repeater( std::size_t sz, T r ) : sz( sz ), val( r ) + repeater( std::size_t sz_, T r ) : sz( sz_ ), val( r ) { } }; @@ -50,7 +50,7 @@ std::size_t sz; Fun val; - fun_repeater( std::size_t sz, Fun r ) : sz( sz ), val( r ) + fun_repeater( std::size_t sz_, Fun r ) : sz( sz_ ), val( r ) { } };