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/vhdlcode.l | |
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/vhdlcode.l')
-rw-r--r-- | src/vhdlcode.l | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vhdlcode.l b/src/vhdlcode.l index fa199d1..498a51f 100644 --- a/src/vhdlcode.l +++ b/src/vhdlcode.l @@ -68,7 +68,6 @@ static bool g_startCode = FALSE; static QCString g_PrevString; static QCString g_CurrClass; static QDict<QCString>g_vhdlKeyDict; -static QCString g_tempClass; static QCString g_tempComp; static QCString g_PortMapComp; static MemberDef *g_vhdlMember; @@ -77,7 +76,6 @@ static QCString g_FuncProto; //----------------------------------------------------------- static CodeOutputInterface * g_code; -static QCString g_curClassName; static QCString g_parmType; static QCString g_parmName; static const char * g_inputString; //!< the code fragment as text @@ -90,9 +88,6 @@ static Definition *g_searchCtx; static QCString g_exampleName; static QCString g_exampleFile; -static QCString g_type; -static QCString g_name; -static QCString g_args; static QCString g_classScope; static QCString g_CurrScope; @@ -1055,7 +1050,6 @@ XILINX "INST"|"NET"|"PIN"|"BLKNM"|"BUFG"|"COLLAPSE"|"CPLD"|"COMPGRP"|"CONFI <ClassesName>{FUNCNAME} { - QDict<QCString> mem; appStringLower(g_PrevString,vhdlcodeYYtext); g_CurrClass.resize(0); g_CurrClass.append(vhdlcodeYYtext); |