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/docparser.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/docparser.cpp')
-rw-r--r-- | src/docparser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index 9a120dc..4f370c4 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -844,7 +844,6 @@ static int handleStyleArgument(DocNode *parent,QList<DocNode> &children, const QCString &cmdName) { DBG(("handleStyleArgument(%s)\n",qPrint(cmdName))); - QCString tokenName = g_token->name; int tok=doctokenizerYYlex(); if (tok!=TK_WHITESPACE) { @@ -1178,7 +1177,6 @@ static void handleParameterType(DocNode *parent,QList<DocNode> &children,const Q { QCString name = g_token->name; int p=0,i; - QCString type; while ((i=paramTypes.find('|',p))!=-1) { g_token->name = paramTypes.mid(p,i-p); @@ -2137,7 +2135,6 @@ DocXRefItem::DocXRefItem(DocNode *parent,int id,const char *key) : bool DocXRefItem::parse() { - QCString listName; RefList *refList = Doxygen::xrefLists->find(m_key); if (refList && ( @@ -2571,7 +2568,6 @@ DocCite::DocCite(DocNode *parent,const QCString &target,const QCString &) //cont { static uint numBibFiles = Config_getList("CITE_BIB_FILES").count(); m_parent = parent; - QCString anchor; //printf("DocCite::DocCite(target=%s)\n",target.data()); ASSERT(!target.isEmpty()); m_relPath = g_relPath; |