Skip to content

Commit 9e56e4f

Browse files
committed
Temporarily comment out fix; this breaks the build
This will need more testing ...
1 parent 3f33dc7 commit 9e56e4f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pygccxml/declarations/declaration.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,11 @@ def parent(self, new_parent):
275275
if new_parent:
276276
assert(isinstance(new_parent, declaration_t))
277277

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
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
283283

284284
self._parent = new_parent
285285

0 commit comments

Comments
 (0)