1
0
Fork 0
libreoffice/external/boost/msvc2017.patch.0
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

17 lines
316 B
Text

--- 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