From 550d82d1bd8a99ec6d3f91c2f4c2c18925d92d39 Mon Sep 17 00:00:00 2001 From: Andre Sailer <andre.philippe.sailer@cern.ch> Date: Mon, 19 Aug 2019 16:21:48 +0200 Subject: [PATCH] listcomponents: rename variable lib to alib to fix shadow warning (because of lambda capture in c++14?) --- GaudiPluginService/src/listcomponents.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GaudiPluginService/src/listcomponents.cpp b/GaudiPluginService/src/listcomponents.cpp index 63c135261..da8dba61f 100644 --- a/GaudiPluginService/src/listcomponents.cpp +++ b/GaudiPluginService/src/listcomponents.cpp @@ -110,12 +110,12 @@ int main( int argc, char* argv[] ) { }; // loop over the list of libraries passed on the command line - for ( const char* lib : libs ) { - if ( dlopen( lib, RTLD_LAZY | RTLD_LOCAL ) ) { - dump_from( reg2, lib, "v2" ); - dump_from( reg1, lib, "v1" ); + for ( const char* aLib : libs ) { + if ( dlopen( aLib, RTLD_LAZY | RTLD_LOCAL ) ) { + dump_from( reg2, aLib, "v2" ); + dump_from( reg1, aLib, "v1" ); } else { - std::cerr << "ERROR: failed to load " << lib << ": " << dlerror() << std::endl; + std::cerr << "ERROR: failed to load " << aLib << ": " << dlerror() << std::endl; return EXIT_FAILURE; } } -- GitLab