From: Nathan James Date: Thu, 24 Nov 2022 14:01:08 +0000 (+0000) Subject: Fix remaining build errors introduced in D90568 - 15e76eed0c7. X-Git-Tag: upstream/17.0.6~26640 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=73dba0e3bdc66aff89a0313f1c528af6d7649607;p=platform%2Fupstream%2Fllvm.git Fix remaining build errors introduced in D90568 - 15e76eed0c7. A few cases were missed in 0923628d26d --- 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 ==