Skip to content

Commit 81318c8

Browse files
fpelliccionialandefreitas
authored andcommitted
fix: global namespace is always created
1 parent c8b9e8f commit 81318c8

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

src/lib/AST/ASTVisitor.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,9 @@ class ASTVisitor
374374
// dependencies will be tracked, but not extracted
375375
traverseDecl(context_.getTranslationUnitDecl());
376376

377+
// This is to ensure that the global namespace is always present
378+
getOrCreateInfo<NamespaceInfo>(SymbolID::global);
379+
377380
// if dependency extraction is disabled, we are done
378381
if(config_->referencedDeclarations ==
379382
ConfigImpl::SettingsImpl::ExtractPolicy::Never)

test-files/golden-tests/empty.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

test-files/golden-tests/empty.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<mrdocs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://github.com/cppalliance/mrdocs/raw/develop/mrdocs.rnc">
4+
<namespace id="//////////////////////////8=">
5+
</namespace>
6+
</mrdocs>

0 commit comments

Comments
 (0)