aboutsummaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorNathan James <n.james93@hotmail.co.uk>2022-11-24 14:01:08 +0000
committerNathan James <n.james93@hotmail.co.uk>2022-11-24 14:01:08 +0000
commit73dba0e3bdc66aff89a0313f1c528af6d7649607 (patch)
tree2459d675a65d44e8c2f8bbed937affa430e556c6 /lldb
parent6ebd0aa42066dd1879217b260704571e440ce5ef (diff)
downloadllvm-73dba0e3bdc66aff89a0313f1c528af6d7649607.zip
llvm-73dba0e3bdc66aff89a0313f1c528af6d7649607.tar.gz
llvm-73dba0e3bdc66aff89a0313f1c528af6d7649607.tar.bz2
Fix remaining build errors introduced in D90568 - 15e76eed0c7.
A few cases were missed in 0923628d26d
Diffstat (limited to 'lldb')
-rw-r--r--lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
index e4d9d1b..a43ff0f 100644
--- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -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());
@@ -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 ==