diff options
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r-- | src/pyscanner.l | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l index 8c6c8ed..b0486e4 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -1698,12 +1698,13 @@ void PythonLanguageScanner::parseCode(CodeOutputInterface &codeOutIntf, int endLine, bool inlineFragment, MemberDef *memberDef, - bool showLineNumbers + bool showLineNumbers, + Definition *searchCtx ) { ::parsePythonCode(codeOutIntf,scopeName,input,isExampleBlock,exampleName, fileDef,startLine,endLine,inlineFragment,memberDef, - showLineNumbers); + showLineNumbers,searchCtx); } void PythonLanguageScanner::parsePrototype(const char *text) |