diff options
Diffstat (limited to 'external/boost/msvc2017.patch.0')
-rw-r--r-- | external/boost/msvc2017.patch.0 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/external/boost/msvc2017.patch.0 b/external/boost/msvc2017.patch.0 new file mode 100644 index 0000000000..4b1002a17e --- /dev/null +++ b/external/boost/msvc2017.patch.0 @@ -0,0 +1,17 @@ +--- boost/iterator.hpp ++++ boost/iterator.hpp +@@ -13,7 +13,14 @@ + namespace boost + { + ++#if defined _MSC_VER && !defined __clang__ ++#pragma warning(push) ++#pragma warning(disable: 4996) ++#endif + using std::iterator; ++#if defined _MSC_VER && !defined __clang__ ++#pragma warning(pop) ++#endif + + } // namespace boost + |