From 0923628d26d2c01decbd79804828a5e8df92c827 Mon Sep 17 00:00:00 2001 From: Nathan James Date: Thu, 24 Nov 2022 13:42:53 +0000 Subject: [PATCH] Fix build error introduced in D90568 - 15e76eed0c7 --- lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp index 2d541ba..e4d9d1b 100644 --- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp +++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp @@ -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 { -- 2.7.4