Revert changes I committed by mistake
This commit is contained in:
parent
cc82288ff6
commit
1656ecd73b
|
@ -924,10 +924,9 @@ const Library::Container* Library::detectContainer(const Token* typeStart, bool
|
||||||
// returns true if ftok is not a library function
|
// returns true if ftok is not a library function
|
||||||
bool Library::isNotLibraryFunction(const Token *ftok) const
|
bool Library::isNotLibraryFunction(const Token *ftok) const
|
||||||
{
|
{
|
||||||
/*
|
|
||||||
if (ftok->function() && ftok->function()->nestedIn && ftok->function()->nestedIn->type != Scope::eGlobal)
|
if (ftok->function() && ftok->function()->nestedIn && ftok->function()->nestedIn->type != Scope::eGlobal)
|
||||||
return true;
|
return true;
|
||||||
*/
|
|
||||||
// variables are not library functions.
|
// variables are not library functions.
|
||||||
if (ftok->varId())
|
if (ftok->varId())
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue