summaryrefslogtreecommitdiff
path: root/boost/boost.4100.warnings.patch
blob: ea475777c7f2341ff6f5e19f2b517edfc38186fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- misc/boost_1_44_0/boost/concept/detail/msvc.hpp
+++ misc/build/boost_1_44_0/boost/concept/detail/msvc.hpp
@@ -12,6 +12,9 @@
 #  include <boost/mpl/if.hpp>
 # endif
 
+// disable spurious "unreferenced formal parameter" warnings
+#pragma warning( push )
+#pragma warning( disable: 4100 )
 
 namespace boost { namespace concepts {
 
@@ -111,4 +114,6 @@
 # endif
 }}
 
+#pragma warning( pop )
+
 #endif // BOOST_CONCEPT_CHECK_MSVC_DWA2006429_HPP