Skip to content

Commit

Permalink
Fix remaining build errors introduced in D90568 - 15e76ee.
Browse files Browse the repository at this point in the history
A few cases were missed in 0923628
  • Loading branch information
njames93 committed Nov 24, 2022
1 parent 6ebd0aa commit 73dba0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
Expand Up @@ -1899,7 +1899,7 @@ NamespaceDecl *TypeSystemClang::GetUniqueNamespaceDeclaration(

namespace_decl =
NamespaceDecl::Create(ast, decl_ctx, false, SourceLocation(),
SourceLocation(), nullptr, nullptr);
SourceLocation(), nullptr, nullptr, false);
translation_unit_decl->setAnonymousNamespace(namespace_decl);
translation_unit_decl->addDecl(namespace_decl);
assert(namespace_decl == translation_unit_decl->getAnonymousNamespace());
Expand All @@ -1911,7 +1911,7 @@ NamespaceDecl *TypeSystemClang::GetUniqueNamespaceDeclaration(
return namespace_decl;
namespace_decl =
NamespaceDecl::Create(ast, decl_ctx, false, SourceLocation(),
SourceLocation(), nullptr, nullptr);
SourceLocation(), nullptr, nullptr, false);
parent_namespace_decl->setAnonymousNamespace(namespace_decl);
parent_namespace_decl->addDecl(namespace_decl);
assert(namespace_decl ==
Expand Down

0 comments on commit 73dba0e

Please sign in to comment.