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 92bbcbb commit 7ac6aeaCopy full SHA for 7ac6aea
src/pygccxml/parser/project_reader.py
@@ -419,7 +419,11 @@ def read_xml(self, file_configuration):
419
@staticmethod
420
def _join_top_namespaces(main_ns_list, other_ns_list):
421
answer = main_ns_list[:]
422
+ for n in main_ns_list:
423
+ print("_join_top_namespaces", n, n.name)
424
+ print("--------------")
425
for other_ns in other_ns_list:
426
+ print("_join_top_namespaces", other_ns, other_ns.name)
427
main_ns = pygccxml.declarations.find_declaration(
428
answer,
429
decl_type=pygccxml.declarations.namespace_t,
0 commit comments