]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/array.hpp
Make the default format translatable, and load the cite formats in
[lyx.git] / boost / boost / array.hpp
index 8ef73c42508c1d465bf31d0e40bb6fc68dfad200..d58b93ad54b22197afcc231b297db4982ccbdf5d 100644 (file)
 #ifndef BOOST_ARRAY_HPP
 #define BOOST_ARRAY_HPP
 
+#include <boost/detail/workaround.hpp>
+
+#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)  
+# pragma warning(push)  
+# pragma warning(disable:4996) // 'std::equal': Function call with parameters that may be unsafe
+#endif
+
 #include <cstddef>
 #include <stdexcept>
 #include <boost/assert.hpp>
@@ -320,4 +327,9 @@ namespace boost {
 
 } /* namespace boost */
 
+
+#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)  
+# pragma warning(pop)  
+#endif 
+
 #endif /*BOOST_ARRAY_HPP*/