From 589aafacbcb69cbe7896e929005ff47f7ca5a5c3 Mon Sep 17 00:00:00 2001
From: scott snyder <snyder@bnl.gov>
Date: Tue, 25 Apr 2017 01:39:39 +0200
Subject: [PATCH] AthenaServices: Comply with ATLAS naming conventions.

Local variables should not start with m_.



Former-commit-id: ffa5cba710dc651aa8660c729ac29169a7e7c157
---
 Control/AthenaServices/src/CoreDumpSvc.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Control/AthenaServices/src/CoreDumpSvc.cxx b/Control/AthenaServices/src/CoreDumpSvc.cxx
index 1964196c8d3..780b9eeed1a 100644
--- a/Control/AthenaServices/src/CoreDumpSvc.cxx
+++ b/Control/AthenaServices/src/CoreDumpSvc.cxx
@@ -288,8 +288,8 @@ void CoreDumpSvc::setCoreDumpInfo( const std::string& name, const std::string& v
 {
   auto currSlot=Gaudi::Hive::currentContext().slot();
   if(currSlot==EventContext::INVALID_CONTEXT_ID)currSlot=0;
-  auto &m_usrCoreDump=m_usrCoreDumps.at(currSlot);
-  m_usrCoreDump[name] = value;
+  auto &usrCoreDump=m_usrCoreDumps.at(currSlot);
+  usrCoreDump[name] = value;
 }
 
 
-- 
GitLab