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/util.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/util.cpp')
-rw-r--r-- | src/util.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/util.cpp b/src/util.cpp index 000de53..0ecd11f 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -3317,7 +3317,7 @@ static QCString getCanonicalTypeForIdentifier( { if (count>10) return word; // oops recursion - QCString symName,scope,result,templSpec,tmpName; + QCString symName,result,templSpec,tmpName; //DefinitionList *defList=0; if (tSpec && !tSpec->isEmpty()) templSpec = stripDeclKeywords(getCanonicalTemplateSpec(d,fs,*tSpec)); @@ -4111,8 +4111,6 @@ bool getDefs(const QCString &scName, if (!args) break; - QCString className = mmd->getClassDef()->name(); - ArgumentList *mmdAl = mmd->argumentList(); if (matchArguments2(mmd->getOuterScope(),mmd->getFileDef(),mmdAl, Doxygen::globalScope,mmd->getFileDef(),argList, |