Skip to content

Commit

Permalink
Remove extraneous space
Browse files Browse the repository at this point in the history
  • Loading branch information
myint committed Mar 2, 2019
1 parent 998e80d commit 8a20c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ def _get_method(self, return_type_and_name, modifiers, templated_types,
if token.name == ':':
while token.name != ';' and token.name != '{':
# skip preprocesors macros
if token.name.startswith(('#if', '#elif', '#else', '#endif')):
if token.name.startswith(('#if', '#elif', '#else', '#endif')):
token = self._get_next_token()
continue
member, token = self.get_name()
Expand Down

0 comments on commit 8a20c94

Please sign in to comment.