From 6c793a74de2ce1bc23626892c1d8635dc1de99f4 Mon Sep 17 00:00:00 2001
From: scott snyder <snyder@bnl.gov>
Date: Sat, 29 Sep 2018 18:16:40 +0200
Subject: [PATCH] FilePeeker: Suppress gcc8 warnings from boost.

Suppress a gcc8 warning from boost (in mpl/assert.h).
(Binaries apparently include boost with -I rather than -isystem.)
Fixed in boost 1.68 (see https://github.com/boostorg/mpl/issues/31)



Former-commit-id: c3a420b298a691e772fa66a4fc257d5fd5a2a826
---
 Tools/FilePeeker/src/BSFilePeeker.cxx | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/Tools/FilePeeker/src/BSFilePeeker.cxx b/Tools/FilePeeker/src/BSFilePeeker.cxx
index 969dde77ed4..8ed6de269d1 100644
--- a/Tools/FilePeeker/src/BSFilePeeker.cxx
+++ b/Tools/FilePeeker/src/BSFilePeeker.cxx
@@ -6,7 +6,17 @@
 #include <iostream>
 #include <string>
 #include <unistd.h>
+// 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 "EventStorage/pickDataReader.h"
+#ifdef __GNUC__
+# pragma GCC diagnostic pop
+#endif
 #include "FileMetaData.h"
 
 class BSFilePeeker {
-- 
GitLab