From 4d11c39c96584319c439ef94792cbf92d238fde5 Mon Sep 17 00:00:00 2001 From: Axel Naumann Date: Wed, 27 Aug 2014 17:16:12 +0200 Subject: [PATCH] One plural is sufficient. --- core/utils/src/rootclingTCling.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/utils/src/rootclingTCling.cxx b/core/utils/src/rootclingTCling.cxx index 13dbe69..3ce11a1 100644 --- a/core/utils/src/rootclingTCling.cxx +++ b/core/utils/src/rootclingTCling.cxx @@ -27,7 +27,7 @@ std::string gPCMFilename; std::vector gClassesToStore; std::vector gTypedefsToStore; std::vector gEnumsToStore; -std::vector gAncestorPCMsNames; +std::vector gAncestorPCMNames; extern "C" const char ** *TROOT__GetExtraInterpreterArgs() @@ -74,7 +74,7 @@ void AddEnumToROOTFile(const char *enumname) extern "C" void AddAncestorPCMROOTFile(const char *pcmName) { - gAncestorPCMsNames.emplace_back(pcmName); + gAncestorPCMNames.emplace_back(pcmName); } extern "C" @@ -170,7 +170,7 @@ bool CloseStreamerInfoROOTFile() typedefs.Write("__Typedefs", TObject::kSingleKey); enums.Write("__Enums", TObject::kSingleKey); - dictFile.WriteObjectAny(&gAncestorPCMsNames, "std::vector", "__AncestorPCMsNames"); + dictFile.WriteObjectAny(&gAncestorPCMNames, "std::vector", "__AncestorPCMNames"); return true; -- 1.8.2