Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ignore Q_ENUM in doxygen test
  • Loading branch information
nyalldawson committed Aug 29, 2017
1 parent b370a39 commit e4c1e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/code_layout/doxygen_parser.py
Expand Up @@ -355,7 +355,7 @@ def elemIsDocumentableMember(self, elem):

# ignore certain obvious operators
try:
if name.text in ('operator=', 'operator==', 'operator!='):
if name.text in ('operator=', 'operator==', 'operator!=', 'Q_ENUM'):
return False
except:
pass
Expand Down

0 comments on commit e4c1e1b

Please sign in to comment.