We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212ae62 commit 9607663Copy full SHA for 9607663
CppHeaderParser/CppHeaderParser.py
@@ -3075,20 +3075,7 @@ def _evaluate_stack(self, token=None):
3075
self.using[alias] = atype
3076
elif is_method_namestack(self.stack) and "(" in self.nameStack:
3077
debug_print("trace")
3078
- if self.braceDepth > 0:
3079
- if (
3080
- "{" in self.stack
3081
- and self.stack[0] != "{"
3082
- and self.stack[-1] == ";"
3083
- and self.braceDepth == 1
3084
- ):
3085
- # Special case of a method defined outside a class that has a body
3086
- pass
3087
- else:
3088
- self._evaluate_method_stack()
3089
3090
- # Free function
3091
+ self._evaluate_method_stack()
3092
elif is_enum_namestack(self.nameStack):
3093
3094
self._parse_enum()
0 commit comments