Front-end/Non-functional: Add some const/auto, useful for upcoming changes.

This commit is contained in:
John Kessenich 2016-08-19 07:27:28 -06:00
parent b9e39120b4
commit 0a04b4df02
3 changed files with 6 additions and 6 deletions

View file

@ -357,7 +357,7 @@ public:
return (*it).second;
}
void findFunctionNameList(const TString& name, TVector<TFunction*>& list)
void findFunctionNameList(const TString& name, TVector<const TFunction*>& list)
{
size_t parenAt = name.find_first_of('(');
TString base(name, 0, parenAt + 1);
@ -624,7 +624,7 @@ public:
return false;
}
void findFunctionNameList(const TString& name, TVector<TFunction*>& list, bool& builtIn)
void findFunctionNameList(const TString& name, TVector<const TFunction*>& list, bool& builtIn)
{
// For user levels, return the set found in the first scope with a match
builtIn = false;