From 73dba0e3bdc66aff89a0313f1c528af6d7649607 Mon Sep 17 00:00:00 2001 From: Nathan James Date: Thu, 24 Nov 2022 14:01:08 +0000 Subject: [PATCH] Fix remaining build errors introduced in D90568 - 15e76eed0c7. A few cases were missed in 0923628d26d --- lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp index e4d9d1b28c1ef..a43ff0fa057a9 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 ==