Unify variable names
This commit is contained in:
parent
ef1f3fbee6
commit
f28524fefa
|
@ -1102,8 +1102,8 @@ public:
|
|||
const Scope *findScopeByName(const std::string& name) const;
|
||||
|
||||
const Type* findType(const Token *startTok, const Scope *startScope) const;
|
||||
Type* findType(const Token *tok, Scope *startScope) const {
|
||||
return const_cast<Type*>(this->findType(tok, const_cast<const Scope *>(startScope)));
|
||||
Type* findType(const Token *startTok, Scope *startScope) const {
|
||||
return const_cast<Type*>(this->findType(startTok, const_cast<const Scope *>(startScope)));
|
||||
}
|
||||
|
||||
const Scope *findScope(const Token *tok, const Scope *startScope) const;
|
||||
|
|
Loading…
Reference in New Issue