Fix build error introduced in D90568 - 15e76eed0c

This commit is contained in:
Nathan James
2022-11-24 13:42:53 +00:00
parent bc91104e85
commit 0923628d26

View File

@@ -1886,9 +1886,9 @@ NamespaceDecl *TypeSystemClang::GetUniqueNamespaceDeclaration(
return namespace_decl;
}
namespace_decl =
NamespaceDecl::Create(ast, decl_ctx, is_inline, SourceLocation(),
SourceLocation(), &identifier_info, nullptr);
namespace_decl = NamespaceDecl::Create(ast, decl_ctx, is_inline,
SourceLocation(), SourceLocation(),
&identifier_info, nullptr, false);
decl_ctx->addDecl(namespace_decl);
} else {