summaryrefslogtreecommitdiff
path: root/external/boost/boost.ptr_container.Wunused-parameter.warnings.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/boost/boost.ptr_container.Wunused-parameter.warnings.patch')
-rw-r--r--external/boost/boost.ptr_container.Wunused-parameter.warnings.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/external/boost/boost.ptr_container.Wunused-parameter.warnings.patch b/external/boost/boost.ptr_container.Wunused-parameter.warnings.patch
deleted file mode 100644
index 280bc70690cf..000000000000
--- a/external/boost/boost.ptr_container.Wunused-parameter.warnings.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- misc/boost_1_44_0/boost/ptr_container/detail/reversible_ptr_container.hpp 2011-03-04 11:33:36.269274940 +0000
-+++ misc/build/boost_1_44_0/boost/ptr_container/detail/reversible_ptr_container.hpp 2011-03-04 11:33:36.269274940 +0000
-@@ -259,6 +259,10 @@
-
- static void enforce_null_policy( const Ty_* x, const char* msg )
- {
-+#ifdef BOOST_PTR_CONTAINER_NO_EXCEPTIONS
-+ (void)x;
-+ (void)msg;
-+#endif
- if( !allow_null )
- {
- BOOST_PTR_CONTAINER_THROW_EXCEPTION( 0 == x && "null not allowed",
---- misc/boost_1_44_0/boost/ptr_container/ptr_sequence_adapter.hpp 2009-11-01 12:07:12.000000000 +0100
-+++ misc/build/boost_1_44_0/boost/ptr_container/ptr_sequence_adapter.hpp 2011-02-04 16:39:19.000000000 +0100
-@@ -671,6 +671,7 @@
- void range_check_impl( iterator first, iterator last,
- std::random_access_iterator_tag )
- {
-+ (void)first; (void)last;
- BOOST_ASSERT( first <= last && "out of range unique()/erase_if()" );
- BOOST_ASSERT( this->begin() <= first && "out of range unique()/erase_if()" );
- BOOST_ASSERT( last <= this->end() && "out of range unique()/erase_if)(" );