diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-09 09:17:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-09 09:17:51 (GMT) |
commit | be7ce5002af548f01debf40d90640a3a28346f0a (patch) | |
tree | 63009c4744b1542014d733eed3608e97d8edd493 | |
parent | 2bc072132313b124781215c4fc43ca4f103adcda (diff) | |
download | Doxygen-be7ce5002af548f01debf40d90640a3a28346f0a.zip Doxygen-be7ce5002af548f01debf40d90640a3a28346f0a.tar.gz Doxygen-be7ce5002af548f01debf40d90640a3a28346f0a.tar.bz2 |
Bug 154880 - if "using namespace" used, call of a static member function in C++ is not recognized or recognized wrong
-rw-r--r-- | src/code.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -398,7 +398,7 @@ static CallContext g_theCallContext; static void pushScope(const char *s) { g_classScopeLengthStack.push(new int(g_classScope.length())); - if (g_classScope.isEmpty()) + if (g_classScope.isEmpty() || leftScopeMatch(s,g_classScope)) { g_classScope = s; } |