From: Axel Naumann Date: Wed, 27 Aug 2014 15:16:12 +0000 (+0200) Subject: One plural is sufficient. X-Git-Tag: v6-02-00-rc1~260 X-Git-Url: https://root.cern.ch/gitweb?p=root.git;a=commitdiff_plain;h=4d11c39c96584319c439ef94792cbf92d238fde5 One plural is sufficient. --- 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;