Replace boost with STL or CxxUtils
Replace boost with STL or CxxUtils
Merge request reports
Activity
This merge request affects 7 packages:
- Control/AthenaMonitoringKernel
- DataQuality/DataQualityInterfaces
- Database/APR/RootCollection
- Database/AthenaPOOL/AthenaPoolCnvSvc
- Database/AthenaPOOL/EventSelectorAthenaPool
- Database/PersistentDataModelTPCnv
- PhysicsAnalysis/D3PDMaker/D3PDMakerReader
Affected files list will not be printed in this case
Adding @gemmeren ,@tadej ,@maszyman ,@amete ,@ssnyder ,@mnowak as watchers
CI Result SUCCESS (hash a99f4c20)Athena AthSimulation AthGeneration AthAnalysis externals cmake make tests Full details available on this CI monitor view. Check the JIRA CI status board for known problems
Athena: number of compilation errors 0, warnings 0
AthSimulation: number of compilation errors 0, warnings 0
AthGeneration: number of compilation errors 0, warnings 0
AthAnalysis: number of compilation errors 0, warnings 0
For experts only: Jenkins output [CI-MERGE-REQUEST-CC7 78939]added review-approved label and removed review-pending-level-1 label
mentioned in commit 23fc18f5
2 2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration 3 3 */ 4 4 5 6 #include <boost/algorithm/string/predicate.hpp> 7 5 #include "AthenaMonitoringKernel/MonitoredTimer.h" 6 #include <stdexcept> 8 7 9 8 namespace Monitored { 10 9 void checkNamingConvention( const std::string& name ) { 11 10 // Enforce some naming convention for timers 12 const char* TIMER_PREFIX = "TIME_"; //<! prefix required for all timers 13 if (!boost::algorithm::starts_with(name, TIMER_PREFIX)) { 14 throw std::runtime_error("Name of Timer \"" + name + "\" needs to start with \"" + 15 TIMER_PREFIX + "\""); 11 if (name.size() < 5 || name.substr(0,5) != std::string("TIME_")) { added sweep:ignore label
mentioned in merge request !66324 (merged)
mentioned in merge request !66343 (closed)