diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-14 16:12:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-14 16:12:02 +0100 |
commit | aab129425357bd27df4e37f23463c062c6013eb1 (patch) | |
tree | 643f540f7bf0afb60ad44423986d03b194ad2893 | |
parent | 16d420b1ccb27bb254d75d77dd2bcc82b6dc84a2 (diff) |
WaE: yet more of these shadowing warnings
-rw-r--r-- | boost/boost.4713.warnings.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/boost/boost.4713.warnings.patch b/boost/boost.4713.warnings.patch index 29653ca79fdd..fe18ab7ab900 100644 --- a/boost/boost.4713.warnings.patch +++ b/boost/boost.4713.warnings.patch @@ -879,3 +879,16 @@ if( !allow_null ) { BOOST_PTR_CONTAINER_THROW_EXCEPTION( 0 == x && "null not allowed", +--- misc/boost_1_44_0/boost/pool/object_pool.hpp.orig 2011-07-14 16:08:31.672964851 +0100 ++++ misc/build/boost_1_44_0/boost/pool/object_pool.hpp 2011-07-14 16:09:20.851594534 +0100 +@@ -53,8 +53,8 @@ + + public: + // This constructor parameter is an extension! +- explicit object_pool(const size_type next_size = 32) +- :pool<UserAllocator>(sizeof(T), next_size) { } ++ explicit object_pool(const size_type next_size_ = 32) ++ :pool<UserAllocator>(sizeof(T), next_size_) { } + + ~object_pool(); + |