Fixed compilation error - added missing function in symboldatabase.

This commit is contained in:
PKEuS 2012-09-02 14:30:00 +02:00
parent 24659dee92
commit 8a474add19
1 changed files with 4 additions and 0 deletions

View File

@ -474,6 +474,10 @@ public:
return (type == eClass || type == eStruct);
}
bool isExecutable() const {
return type != eClass && type != eStruct && type != eUnion && type != eGlobal && type != eNamespace;
}
bool isLocal() const {
return (type == eIf || type == eElse || type == eElseIf ||
type == eFor || type == eWhile || type == eDo ||