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 3f33dc7 commit 9e56e4fCopy full SHA for 9e56e4f
pygccxml/declarations/declaration.py
@@ -275,11 +275,11 @@ def parent(self, new_parent):
275
if new_parent:
276
assert(isinstance(new_parent, declaration_t))
277
278
- if new_parent.name == "tr1":
279
- # When asking for the parent, consider that tr1 == std
280
- # and silently replace tr1 by std.
281
- if new_parent.parent.name == "std":
282
- new_parent = new_parent.parent
+ # if new_parent.name == "tr1":
+ # # When asking for the parent, consider that tr1 == std
+ # # and silently replace tr1 by std.
+ # if new_parent.parent.name == "std":
+ # new_parent = new_parent.parent
283
284
self._parent = new_parent
285
0 commit comments