diff --git a/Trigger/TrigEvent/TrigNavStructure/CMakeLists.txt b/Trigger/TrigEvent/TrigNavStructure/CMakeLists.txt index ba4ff687e9d15b3b0e1cf91bd8e8f028c000efe1..2219f6bee9c37dd24d22f7218ba9f6d81439f897 100644 --- a/Trigger/TrigEvent/TrigNavStructure/CMakeLists.txt +++ b/Trigger/TrigEvent/TrigNavStructure/CMakeLists.txt @@ -1,4 +1,3 @@ -# $Id: CMakeLists.txt 778117 2016-10-12 20:11:14Z krasznaa $ ################################################################################ # Package: TrigNavStructure ################################################################################ @@ -10,7 +9,8 @@ atlas_subdir( TrigNavStructure ) atlas_depends_on_subdirs( PUBLIC Control/AthContainers - Control/AthToolSupport/AsgTools ) + Control/AthToolSupport/AsgTools + Control/CxxUtils ) # External dependencies: find_package( Boost COMPONENTS regex ) diff --git a/Trigger/TrigEvent/TrigNavStructure/TrigNavStructure/TrigNavStructure.h b/Trigger/TrigEvent/TrigNavStructure/TrigNavStructure/TrigNavStructure.h index 566f82b9aeabb41f661543098606e3cb5c4c4aab..675e07a5fe631393e41ca213f5485b359af79f86 100644 --- a/Trigger/TrigEvent/TrigNavStructure/TrigNavStructure/TrigNavStructure.h +++ b/Trigger/TrigEvent/TrigNavStructure/TrigNavStructure/TrigNavStructure.h @@ -1,7 +1,7 @@ // Dear emacs, this is -*- c++ -*- /* - Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration */ @@ -10,6 +10,7 @@ #include <vector> +#include "CxxUtils/checker_macros.h" #include "TrigNavStructure/TriggerElement.h" #include "TrigNavStructure/TriggerElementFactory.h" #include "TrigNavStructure/BaseHolder.h" @@ -363,8 +364,8 @@ namespace HLT { TriggerElementFactory m_factory; //!< factory of trigger elements TrigHolderStructure m_holderstorage; //!< structure for feature holders - static const TriggerElement* m_unspecifiedTE; - static std::string m_unspecifiedLabel; + static const TriggerElement* m_unspecifiedTE ATLAS_THREAD_SAFE; + static std::string m_unspecifiedLabel ATLAS_THREAD_SAFE; };