Skip to content

Commit

Permalink
Merge pull request #195 from simait/develop
Browse files Browse the repository at this point in the history
Small fix for documentation of forward declarations of functions.
  • Loading branch information
spadgos committed Jul 4, 2013
2 parents bd849d9 + b0ae148 commit a37027c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsdocs.py
Expand Up @@ -681,7 +681,7 @@ def setupSettings(self):
def parseFunction(self, line):
res = re.search(
'(?P<retval>' + self.settings['varIdentifier'] + ')[&*\\s]+'
+ '(?P<name>' + self.settings['varIdentifier'] + ')'
+ '(?P<name>' + self.settings['varIdentifier'] + ');?'
# void fnName
# (arg1, arg2)
+ '\\s*\\(\\s*(?P<args>.*)\)',
Expand Down

0 comments on commit a37027c

Please sign in to comment.