summaryrefslogtreecommitdiffstats
path: root/src/vhdlscanner.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-08-11 13:06:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-08-11 13:06:22 (GMT)
commit34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634 (patch)
treead481e345a35820f0142bb774556afc6de0d00fa /src/vhdlscanner.l
parent3583a7c0bea47665a06d14a64b62376eee21c528 (diff)
downloadDoxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.zip
Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.tar.gz
Doxygen-34cc61be7d0f6dafcaaa5fcdaa98ce4d31014634.tar.bz2
Release-1.8.2
Diffstat (limited to 'src/vhdlscanner.l')
-rw-r--r--src/vhdlscanner.l9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/vhdlscanner.l b/src/vhdlscanner.l
index c92c6ce..a13a51c 100644
--- a/src/vhdlscanner.l
+++ b/src/vhdlscanner.l
@@ -794,12 +794,13 @@ void VHDLLanguageScanner::parseCode(CodeOutputInterface &codeOutIntf,
int endLine,
bool inlineFragment,
MemberDef *memberDef,
- bool showLineNumbers
+ bool showLineNumbers,
+ Definition *searchCtx
)
{
::parseVhdlCode(codeOutIntf,scopeName,input,isExampleBlock,exampleName,
fileDef,startLine,endLine,inlineFragment,memberDef,
- showLineNumbers);
+ showLineNumbers,searchCtx);
}
/*
@@ -998,7 +999,7 @@ static bool checkMultiComment(QCString& qcs,int line)
if (pTemp->isEmpty()) return false;
- int ii=pTemp->count();
+ //int ii=pTemp->count();
qcs.stripPrefix("--!");
while (!pTemp->isEmpty())
{
@@ -1007,7 +1008,7 @@ static bool checkMultiComment(QCString& qcs,int line)
e->brief+=qcs;
iDocLine=-1;
pTemp->removeFirst();
- ii=pTemp->count();
+ //ii=pTemp->count();
}
return true;
}