documentation polish

This commit is contained in:
Arvid Norberg 2013-08-19 03:44:35 +00:00
parent e996e1636f
commit 61be6b6ec8
1 changed files with 1 additions and 0 deletions

View File

@ -159,6 +159,7 @@ def looks_like_variable(line):
if line.startswith('enum '): return False
if line.startswith(','): return False
if line.startswith(':'): return False
if line.startswith('typedef'): return False
return True
def looks_like_function(line):