Skip to content
Snippets Groups Projects
Commit 5b5ace33 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[disable_warnings] disable some warnings for the intel compiler

parent 0084375d
No related branches found
No related tags found
1 merge request!41Fix compilation with icc, several other changes
......@@ -76,4 +76,7 @@
# pragma GCC diagnostic ignored "-Wunreachable-code"
# pragma GCC diagnostic ignored "-Wunused-local-typedefs"
# pragma GCC diagnostic ignored "-Wunused-parameter"
#elif defined(BOOST_INTEL) && BOOST_INTEL
# pragma warning push
# pragma warning disable 177 187 654 1011 2259 2282
#endif
......@@ -9,6 +9,10 @@
// René Fritze (2011 - 2012, 2015 - 2016, 2018 - 2019)
// Tobias Leibner (2020)
#ifdef __GNUC__
#include <boost/config.hpp>
#if defined(BOOST_INTEL) && BOOST_INTEL
# pragma warning pop
#else
# pragma GCC diagnostic pop
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment