From 9d4a6e95aa4d9951af1a817ac3f40ad863398b52 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Sat, 6 Jul 2024 11:42:13 +0200 Subject: [PATCH] Fix a few warnings about unused variables or shadowing --- DDCond/src/ConditionsDependencyHandler.cpp | 2 -- DDG4/plugins/Geant4RegexSensitivesConstruction.cpp | 4 ++-- UtilityApps/src/next_event_dummy.cpp | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/DDCond/src/ConditionsDependencyHandler.cpp b/DDCond/src/ConditionsDependencyHandler.cpp index 97aee01fe..3088d1b58 100644 --- a/DDCond/src/ConditionsDependencyHandler.cpp +++ b/DDCond/src/ConditionsDependencyHandler.cpp @@ -108,7 +108,6 @@ void ConditionsDependencyHandler::compute() { /// 2nd pass: Handler callback for the second turn to resolve missing dependencies void ConditionsDependencyHandler::resolve() { PrintLevel prt_lvl = INFO; - size_t num_resolved = 0; std::vector tmp; std::map > work_pools; Work* w; @@ -120,7 +119,6 @@ void ConditionsDependencyHandler::resolve() { if ( w->state != RESOLVED ) { w->resolve(m_currentWork); } - ++num_resolved; // Fill an empty map of condition vectors for the block inserts auto ret = work_pools.emplace(w->iov->keyData,tmp); if ( ret.second ) { diff --git a/DDG4/plugins/Geant4RegexSensitivesConstruction.cpp b/DDG4/plugins/Geant4RegexSensitivesConstruction.cpp index cdd0e158a..6bb17fecb 100644 --- a/DDG4/plugins/Geant4RegexSensitivesConstruction.cpp +++ b/DDG4/plugins/Geant4RegexSensitivesConstruction.cpp @@ -102,9 +102,9 @@ Geant4RegexSensitivesConstruction::collect_volumes(std::set& volumes, // Try to minimize a bit the number of regex matches. if ( volumes.find(pv.volume()) == volumes.end() ) { if( !path.empty() ) { - for( const auto& m : matches ) { + for( const auto& match : matches ) { std::smatch sm; - bool stat = std::regex_match(path, sm, m); + bool stat = std::regex_match(path, sm, match); if( stat ) { volumes.insert(pv.volume()); ++count; diff --git a/UtilityApps/src/next_event_dummy.cpp b/UtilityApps/src/next_event_dummy.cpp index c5eb6da93..e2c81cd5a 100644 --- a/UtilityApps/src/next_event_dummy.cpp +++ b/UtilityApps/src/next_event_dummy.cpp @@ -18,7 +18,7 @@ TEveStraightLineSet* lineset(Int_t nlines = 40, Int_t nmarkers = 4) ; void next_event(){ - static int count = 1 ; + // static int count = 1 ; std::cout << " next_event called - nothing to do ... " << std::endl ; @@ -32,7 +32,7 @@ void next_event(){ gEve->Redraw3D(); - count += 3 ; + // count += 3 ; }