Skip to content
Snippets Groups Projects
Commit 9b50cbd4 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'gcc8.GeneratorUtils-20181011' into 'master'

GeneratorUtils: Suppress a gcc8 warning from boost.

See merge request atlas/athena!14934
parents bb795a61 230efd36
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,17 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// 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 "GeneratorUtils/StringParse.h"
#ifdef __GNUC__
# pragma GCC diagnostic pop
#endif
#include <iostream>
#include <cmath>
......
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