[Lldb-commits] [PATCH] D147746: [lldb][NFC] Delete unused function Breakpoint::GetEventIdentifier
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 6 15:18:16 PDT 2023
bulbazord created this revision.
bulbazord added reviewers: mib, JDevlieghere, jingham.
Herald added a project: All.
bulbazord requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
This is unused
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D147746
Files:
lldb/include/lldb/Breakpoint/Breakpoint.h
lldb/source/Breakpoint/Breakpoint.cpp
Index: lldb/source/Breakpoint/Breakpoint.cpp
===================================================================
--- lldb/source/Breakpoint/Breakpoint.cpp
+++ lldb/source/Breakpoint/Breakpoint.cpp
@@ -37,11 +37,6 @@
using namespace lldb_private;
using namespace llvm;
-ConstString Breakpoint::GetEventIdentifier() {
- static ConstString g_identifier("event-identifier.breakpoint.changed");
- return g_identifier;
-}
-
const char *Breakpoint::g_option_names[static_cast<uint32_t>(
Breakpoint::OptionNames::LastOptionName)]{"Names", "Hardware"};
Index: lldb/include/lldb/Breakpoint/Breakpoint.h
===================================================================
--- lldb/include/lldb/Breakpoint/Breakpoint.h
+++ lldb/include/lldb/Breakpoint/Breakpoint.h
@@ -80,7 +80,6 @@
class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
public Stoppoint {
public:
- static ConstString GetEventIdentifier();
static const char *
BreakpointEventTypeAsCString(lldb::BreakpointEventType type);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D147746.511544.patch
Type: text/x-patch
Size: 1040 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230406/a2d494f8/attachment.bin>
More information about the lldb-commits
mailing list