Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cebe38 commit ea64deaCopy full SHA for ea64dea
1 file changed
Tools/bgen/bgen/scantools.py
@@ -1,4 +1,5 @@
1
"""\
2
+
3
Tools for scanning header files in search of function prototypes.
4
5
Often, the function prototypes in header files contain enough information
@@ -353,6 +354,9 @@ def processrawspec(self, raw):
353
354
if self.blacklisted(type, name):
355
self.error("*** %s %s blacklisted", type, name)
356
return
357
+ returnlist = [(type, name, 'ReturnMode')]
358
+ returnlist = self.repairarglist(name, returnlist)
359
+ [(type, name, returnmode)] = returnlist
360
arglist = self.extractarglist(args)
361
arglist = self.repairarglist(name, arglist)
362
if self.unmanageable(type, name, arglist):
@@ -481,3 +485,4 @@ def test():
481
485
482
486
if __name__ == '__main__':
483
487
test()
488
0 commit comments