diff options
author | albert-github <albert.tests@gmail.com> | 2014-12-27 18:35:59 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-12-27 18:35:59 (GMT) |
commit | d03e4c2ae1864c6f27a4341449ce97133aeb6847 (patch) | |
tree | 6bf55ad02e65b7e37c1f6afd86e0f8944364272b /src/doxygen.cpp | |
parent | ed39dab59f8af2c5b42cfac0b3140cf594412121 (diff) | |
download | Doxygen-d03e4c2ae1864c6f27a4341449ce97133aeb6847.zip Doxygen-d03e4c2ae1864c6f27a4341449ce97133aeb6847.tar.gz Doxygen-d03e4c2ae1864c6f27a4341449ce97133aeb6847.tar.bz2 |
Remove unused local and static global variables
Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index e127b8e..e4cc1f0 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -2458,7 +2458,6 @@ static MemberDef *addVariableToFile( // see if the function is inside a namespace NamespaceDef *nd = 0; - QCString nscope; if (!scope.isEmpty()) { if (scope.find('@')!=-1) return 0; // anonymous scope! @@ -5493,7 +5492,6 @@ static bool findGlobalMember(EntryNav *rootNav, { Debug::print(Debug::FindMembers,0,"4. Try to add member `%s' to scope `%s'\n", md->name().data(),namespaceName.data()); - QCString nsName = nd ? nd->name().data() : ""; NamespaceDef *rnd = 0; if (!namespaceName.isEmpty()) rnd = Doxygen::namespaceSDict->find(namespaceName); |