From 29dcecd95f6c1788bab90e52359ae6bf83ff61f4 Mon Sep 17 00:00:00 2001 From: scott snyder Date: Fri, 25 Oct 2019 18:04:40 +0200 Subject: [PATCH] StoreGate: Change setting of defaultQuiet to be always false. Previously, some error messages were suppressed in opt builds. Now enable them for both opt and dbg. --- Control/StoreGate/StoreGate/VarHandleBase.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Control/StoreGate/StoreGate/VarHandleBase.h b/Control/StoreGate/StoreGate/VarHandleBase.h index 6654a9d29cb..a2b2b3a3db9 100644 --- a/Control/StoreGate/StoreGate/VarHandleBase.h +++ b/Control/StoreGate/StoreGate/VarHandleBase.h @@ -1,7 +1,7 @@ // This file's extension implies that it's C, but it's really -*- C++ -*-. /* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ // $Id: VarHandleBase.h 797637 2017-02-17 02:32:11Z ssnyder $ @@ -44,11 +44,7 @@ namespace Athena_test { void refCountTest(void); } namespace SG { -#ifdef NDEBUG - const bool defaultQuiet = true; -#else - const bool defaultQuiet = false; -#endif + static constexpr bool defaultQuiet = false; /** -- GitLab