diff options
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 24b309c..9e0c6f1 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -1315,7 +1315,7 @@ static void addClassToContext(EntryNav *rootNav) { tagName = tagInfo->tagName; refFileName = tagInfo->fileName; - if ((i=fullName.find("::"))!=-1) + if (fullName.find("::")!=-1) // symbols imported via tag files may come without the parent scope, // so we artificially create it here { |