Skip to content

Commit b04bc87

Browse files
committed
[lldb][NFC] Delete unused function Breakpoint::GetEventIdentifier
This is unused Differential Revision: https://reviews.llvm.org/D147746
1 parent a1e4f1d commit b04bc87

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

lldb/include/lldb/Breakpoint/Breakpoint.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ namespace lldb_private {
8080
class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
8181
public Stoppoint {
8282
public:
83-
static ConstString GetEventIdentifier();
8483
static const char *
8584
BreakpointEventTypeAsCString(lldb::BreakpointEventType type);
8685

lldb/source/Breakpoint/Breakpoint.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ using namespace lldb;
3737
using namespace lldb_private;
3838
using namespace llvm;
3939

40-
ConstString Breakpoint::GetEventIdentifier() {
41-
static ConstString g_identifier("event-identifier.breakpoint.changed");
42-
return g_identifier;
43-
}
44-
4540
const char *Breakpoint::g_option_names[static_cast<uint32_t>(
4641
Breakpoint::OptionNames::LastOptionName)]{"Names", "Hardware"};
4742

0 commit comments

Comments
 (0)