https://github.com/Nerixyz created https://github.com/llvm/llvm-project/pull/214949
I'm not sure why Git decided to add two duplicate declarations when merging #212015, but this removes the duplicate ones. >From 77a4dcbe2321484007fedab6a33c87efadd3c09a Mon Sep 17 00:00:00 2001 From: Nerixyz <[email protected]> Date: Sat, 8 Aug 2026 12:02:18 +0200 Subject: [PATCH] [lldb] Remove duplicate declarations after merge --- .../Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.h b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.h index 72ded8c8f6481..448331d7590e2 100644 --- a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.h +++ b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CommonABIRuntime.h @@ -63,11 +63,6 @@ class CommonABIRuntime { void SetDynamicTypeInfo(const lldb_private::Address &vtable_addr, const TypeAndOrName &type_info); - TypeAndOrName GetDynamicTypeInfo(const lldb_private::Address &vtable_addr); - - void SetDynamicTypeInfo(const lldb_private::Address &vtable_addr, - const TypeAndOrName &type_info); - protected: Process *m_process; std::mutex m_mutex; _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
