Skip to content

Commit

Permalink
Bug 736027 - [PATCH] Remove not needed local variable in src/doxygen.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Sep 9, 2014
1 parent 3026131 commit 561a996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doxygen.cpp
Expand Up @@ -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
{
Expand Down

0 comments on commit 561a996

Please sign in to comment.