Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Ignore =default during doxygen coverage test
- Loading branch information
Showing
with
5 additions
and
2 deletions.
-
+5
−2
tests/code_layout/doxygen_parser.py
|
@@ -261,9 +261,12 @@ def memberSignature(self, elem): |
|
|
a = elem.find('argsstring') |
|
|
try: |
|
|
if a is not None: |
|
|
return elem.find('name').text + a.text |
|
|
signature = elem.find('name').text + a.text |
|
|
else: |
|
|
return elem.find('name').text |
|
|
signature = elem.find('name').text |
|
|
if signature.endsWith('= default'): |
|
|
signature = signature[:-len('= default')] |
|
|
return signature |
|
|
except: |
|
|
return None |
|
|
|
|
|