Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52203 - branches/release/boost/assign
From: nesotto_at_[hidden]
Date: 2009-04-05 16:49:18


Author: nesotto
Date: 2009-04-05 16:49:17 EDT (Sun, 05 Apr 2009)
New Revision: 52203
URL: http://svn.boost.org/trac/boost/changeset/52203

Log:
fix for supressing warnings
Text files modified:
   branches/release/boost/assign/assignment_exception.hpp | 4 ++--
   branches/release/boost/assign/list_inserter.hpp | 4 ++--
   2 files changed, 4 insertions(+), 4 deletions(-)

Modified: branches/release/boost/assign/assignment_exception.hpp
==============================================================================
--- branches/release/boost/assign/assignment_exception.hpp (original)
+++ branches/release/boost/assign/assignment_exception.hpp 2009-04-05 16:49:17 EDT (Sun, 05 Apr 2009)
@@ -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()

Modified: branches/release/boost/assign/list_inserter.hpp
==============================================================================
--- branches/release/boost/assign/list_inserter.hpp (original)
+++ branches/release/boost/assign/list_inserter.hpp 2009-04-05 16:49:17 EDT (Sun, 05 Apr 2009)
@@ -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 )
         { }
     };
     


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk