Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Try to survive to undefined preprocessor symbols
[simgrid.git] / src / kernel / context / ContextBoost.hpp
index 22295c5..ca190cd 100644 (file)
@@ -6,6 +6,10 @@
 #ifndef SIMGRID_KERNEL_CONTEXT_BOOST_CONTEXT_HPP
 #define SIMGRID_KERNEL_CONTEXT_BOOST_CONTEXT_HPP
 
+/* Boost uses undef preprocessor symbols on FreeBSD, so disable our Werror for this file */
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wundef"
+
 #include <boost/version.hpp>
 #if BOOST_VERSION < 106100
 #include <boost/context/fcontext.hpp>
@@ -13,6 +17,8 @@
 #include <boost/context/detail/fcontext.hpp>
 #endif
 
+#pragma clang diagnostic pop
+
 #include <atomic>
 #include <cstdint>
 #include <functional>