diff --git a/CheckClass.cpp b/CheckClass.cpp index 67b229f67..dee11bd5d 100644 --- a/CheckClass.cpp +++ b/CheckClass.cpp @@ -68,6 +68,13 @@ static struct VAR *ClassChecking_GetVarList(const char classname[]) is_class |= (strcmp(c->name, tok->str) == 0); } + if (match(tok,"std ::")) + { + while (tok->next && tok->next->str[0] != ';') + tok = tok->next; + continue; + } + if (tok->str[0] == '*') is_pointer = true;