[Lldb-commits] [lldb] 0923628 - Fix build error introduced in D90568 - 15e76eed0c7
Nathan James via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 24 05:43:05 PST 2022
Author: Nathan James
Date: 2022-11-24T13:42:53Z
New Revision: 0923628d26d2c01decbd79804828a5e8df92c827
URL: https://github.com/llvm/llvm-project/commit/0923628d26d2c01decbd79804828a5e8df92c827
DIFF: https://github.com/llvm/llvm-project/commit/0923628d26d2c01decbd79804828a5e8df92c827.diff
LOG: Fix build error introduced in D90568 - 15e76eed0c7
Added:
Modified:
lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
Removed:
################################################################################
diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
index 2d541baf2aa75..e4d9d1b28c1ef 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 {
More information about the lldb-commits
mailing list