Skip to content

Commit 7ac6aea

Browse files
committed
debug
1 parent 92bbcbb commit 7ac6aea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/pygccxml/parser/project_reader.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,11 @@ def read_xml(self, file_configuration):
419419
@staticmethod
420420
def _join_top_namespaces(main_ns_list, other_ns_list):
421421
answer = main_ns_list[:]
422+
for n in main_ns_list:
423+
print("_join_top_namespaces", n, n.name)
424+
print("--------------")
422425
for other_ns in other_ns_list:
426+
print("_join_top_namespaces", other_ns, other_ns.name)
423427
main_ns = pygccxml.declarations.find_declaration(
424428
answer,
425429
decl_type=pygccxml.declarations.namespace_t,

0 commit comments

Comments
 (0)