diff options
Diffstat (limited to 'src/vhdlcode.l')
-rw-r--r-- | src/vhdlcode.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdlcode.l b/src/vhdlcode.l index 5806149..0fd9185 100644 --- a/src/vhdlcode.l +++ b/src/vhdlcode.l @@ -1573,7 +1573,7 @@ void parseVhdlCode(CodeOutputInterface &od,const char *className,const QCString { setParameterList(memberDef); } - int iLine=countLines(); + /*int iLine=*/countLines(); vhdlcodeYYrestart( vhdlcodeYYin ); BEGIN( Bases ); vhdlcodeYYlex(); @@ -1588,7 +1588,7 @@ void parseVhdlCode(CodeOutputInterface &od,const char *className,const QCString delete g_sourceFileDef; g_sourceFileDef=0; } - assert(g_yyLineNr==iLine); + return; } |