summaryrefslogtreecommitdiffstats
path: root/src/tclscanner.l
diff options
context:
space:
mode:
authorSergio Oller <sergioller@gmail.com>2013-09-14 18:06:06 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-09-28 22:05:33 (GMT)
commite835d4b28e1db3bdcdf3bfa718bc85445587ccd9 (patch)
tree074cf95073900a2514e1b67ce0f9db84a879cc95 /src/tclscanner.l
parent54f60c116bdb22b6ec5a11ced9888ebe2785eb2b (diff)
downloadDoxygen-e835d4b28e1db3bdcdf3bfa718bc85445587ccd9.zip
Doxygen-e835d4b28e1db3bdcdf3bfa718bc85445587ccd9.tar.gz
Doxygen-e835d4b28e1db3bdcdf3bfa718bc85445587ccd9.tar.bz2
Bug 707641 - `FILTER_SOURCE_FILES=YES` required to build CALL_GRAPHS
https://bugzilla.gnome.org/show_bug.cgi?id=707641 Add references if the file is filtered, as the parser does not know whether we are insideBody or not.
Diffstat (limited to 'src/tclscanner.l')
-rw-r--r--src/tclscanner.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tclscanner.l b/src/tclscanner.l
index 2129bf0..7f160e6 100644
--- a/src/tclscanner.l
+++ b/src/tclscanner.l
@@ -2569,7 +2569,8 @@ void TclLanguageScanner::parseCode(CodeOutputInterface & codeOutIntf,
bool inlineFragment,
MemberDef *memberDef,
bool showLineNumbers,
- Definition *searchCtx
+ Definition *searchCtx,
+ bool collectXRefs
)
{
(void)scopeName;
@@ -2579,6 +2580,7 @@ void TclLanguageScanner::parseCode(CodeOutputInterface & codeOutIntf,
(void)endLine;
(void)inlineFragment;
(void)searchCtx;
+ (void)collectXRefs;
if (input.length()<1) return;
tcl.input_string = input;