Fixed compilation error - added missing function in symboldatabase.
This commit is contained in:
parent
24659dee92
commit
8a474add19
|
@ -474,6 +474,10 @@ public:
|
||||||
return (type == eClass || type == eStruct);
|
return (type == eClass || type == eStruct);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isExecutable() const {
|
||||||
|
return type != eClass && type != eStruct && type != eUnion && type != eGlobal && type != eNamespace;
|
||||||
|
}
|
||||||
|
|
||||||
bool isLocal() const {
|
bool isLocal() const {
|
||||||
return (type == eIf || type == eElse || type == eElseIf ||
|
return (type == eIf || type == eElse || type == eElseIf ||
|
||||||
type == eFor || type == eWhile || type == eDo ||
|
type == eFor || type == eWhile || type == eDo ||
|
||||||
|
|
Loading…
Reference in New Issue