boost: disable MSVC warnings C4510, C4610 for ...

boost::detail::multi_array::ConstMultiArrayConcept

Change-Id: I8937079337eb3c4cfd29c03c6602b99b28f5c59e
This commit is contained in:
Michael Stahl
2012-10-25 17:32:19 +02:00
parent 6fb13dd1aa
commit 5adb2fb940
2 changed files with 27 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ boost_patches += boost.mipsbackport.patch
#https://svn.boost.org/trac/boost/ticket/7551
boost_patches += boost.7551.unusedvars.patch
boost_patches += boost.4100.warnings.patch
boost_patches += boost.4510.warnings.patch
boost_patches += boost.windows.patch
boost_patches += boost.vc2012.patch

View File

@@ -0,0 +1,26 @@
--- misc/boost_1_44_0/boost/multi_array/concept_checks.hpp
+++ misc/build/boost_1_44_0/boost/multi_array/concept_checks.hpp
@@ -56,6 +56,13 @@
}
};
+// MSVC 2008 produces 2 warnings "default constructor could not be generated"
+// here that run over ~100 lines :(
+#ifdef _MSC_VER
+#pragma warning(push,1)
+#pragma warning(disable: 4510)
+#pragma warning(disable: 4610)
+#endif
template <typename Array, std::size_t NumDims >
struct ConstMultiArrayConcept
@@ -117,6 +124,9 @@
index_range range;
};
+#ifdef _MSC_VER
+#pragma warning(pop)
+#endif
template <typename Array, std::size_t NumDims >
struct MutableMultiArrayConcept