Fix discrepancies between function signatures in headers and documentation

This commit is contained in:
Andrey Kamaev
2012-12-26 17:51:04 +04:00
parent aabbe11e64
commit b401c6a0c3
12 changed files with 136 additions and 125 deletions

View File

@@ -575,6 +575,8 @@ class CppHeaderParser(object):
"""
if not self.block_stack:
return name
if name.startswith("cv."):
return name
n = ""
for b in self.block_stack:
block_type, block_name = b[self.BLOCK_TYPE], b[self.BLOCK_NAME]