Skip to content
Snippets Groups Projects
Commit 1c4edb76 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'gcc9.AthViews-20181211' into 'master'

AthViews: Fix gcc9 warnings.

See merge request atlas/athena!16668

Former-commit-id: 21dc635b
parents 4aaa7909 9103fecc
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
*/
/**
......@@ -32,8 +32,15 @@
#include "AthenaKernel/ExtendedEventContext.h"
// Google Test and Google Mock
#if __GNUC__ >= 9
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wdeprecated-copy"
#endif
#include "gtest/gtest.h"
#include "gmock/gmock.h"
#if __GNUC__ >= 9
# pragma GCC diagnostic pop
#endif
// Names for storing collections
......
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