summaryrefslogtreecommitdiffstats
path: root/src/pyscanner.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-12-27 18:35:59 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-12-27 18:35:59 (GMT)
commitd03e4c2ae1864c6f27a4341449ce97133aeb6847 (patch)
tree6bf55ad02e65b7e37c1f6afd86e0f8944364272b /src/pyscanner.l
parented39dab59f8af2c5b42cfac0b3140cf594412121 (diff)
downloadDoxygen-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/pyscanner.l')
-rw-r--r--src/pyscanner.l3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l
index 1ac7b7a..6b68849 100644
--- a/src/pyscanner.l
+++ b/src/pyscanner.l
@@ -83,7 +83,6 @@ static Specifier virt;
static int docBlockContext;
static QCString docBlock;
-static QCString docBlockName;
static bool docBlockInBody;
static bool docBlockJavaStyle;
static bool docBrief;
@@ -97,7 +96,6 @@ static int g_indent = 0;
static int g_curIndent = 0;
static QDict<QCString> g_packageNameCache(257);
-static QCString g_packageScope;
static char g_atomStart;
static char g_atomEnd;
@@ -931,7 +929,6 @@ STARTDOCSYMS "##"
"=" { // default value
// TODO: this rule is too simple, need to be able to
// match things like =")" as well!
- QCString defVal=&yytext[1];
g_defVal.resize(0);
g_braceCount=0;
BEGIN(FunctionParamDefVal);