Skip to content
Snippets Groups Projects
Commit 7a1e50da authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'gcc8.AthenaKernel-20180929' into 'master'

AthenaKernel: Suppress a gcc8 warning from boost.

See merge request atlas/athena!14605

Former-commit-id: 05d8c490
parents b46719c5 f40bc8f4
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,17 @@ ...@@ -13,7 +13,17 @@
#undef NDEBUG #undef NDEBUG
#include <cassert> #include <cassert>
#include <iostream> #include <iostream>
// Suppress a gcc8 warning from boost.
// (Binaries apparently include boost with -I rather than -isystem.)
// Fixed in boost 1.68 (see https://github.com/boostorg/mpl/issues/31)
#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wparentheses"
#endif
#include "boost/filesystem/operations.hpp" #include "boost/filesystem/operations.hpp"
#ifdef __GNUC__
# pragma GCC diagnostic pop
#endif
#include "GaudiKernel/DirSearchPath.h" #include "GaudiKernel/DirSearchPath.h"
using namespace std; using namespace std;
......
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