diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-09-09 21:05:03 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-09-09 21:05:03 (GMT) |
commit | 561a996c68f796dccb36fb3eed6150fcc90e5634 (patch) | |
tree | 20562f82863d0811ad270f28bbd725b56975d206 | |
parent | 3026131de3126298863d1a68fe0c747524e26e43 (diff) | |
download | Doxygen-561a996c68f796dccb36fb3eed6150fcc90e5634.zip Doxygen-561a996c68f796dccb36fb3eed6150fcc90e5634.tar.gz Doxygen-561a996c68f796dccb36fb3eed6150fcc90e5634.tar.bz2 |
Bug 736027 - [PATCH] Remove not needed local variable in 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 { |