summaryrefslogtreecommitdiff
path: root/scripts/doxy-coverage.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/doxy-coverage.py')
-rwxr-xr-xscripts/doxy-coverage.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/doxy-coverage.py b/scripts/doxy-coverage.py
index 69df8b218c..9c39b349aa 100755
--- a/scripts/doxy-coverage.py
+++ b/scripts/doxy-coverage.py
@@ -62,7 +62,8 @@ def parse_file(fullpath):
for definition in tree.findall("./compounddef//memberdef"):
# Should it be documented
- if (definition.get('kind') == 'function' and
+ if definition.get('prot') == 'private' or (
+ definition.get('kind') == 'function' and
definition.get('static') == 'yes'):
continue