diff --git a/lldb/include/lldb/Breakpoint/Breakpoint.h b/lldb/include/lldb/Breakpoint/Breakpoint.h --- a/lldb/include/lldb/Breakpoint/Breakpoint.h +++ b/lldb/include/lldb/Breakpoint/Breakpoint.h @@ -80,7 +80,6 @@ class Breakpoint : public std::enable_shared_from_this, public Stoppoint { public: - static ConstString GetEventIdentifier(); static const char * BreakpointEventTypeAsCString(lldb::BreakpointEventType type); diff --git a/lldb/source/Breakpoint/Breakpoint.cpp b/lldb/source/Breakpoint/Breakpoint.cpp --- a/lldb/source/Breakpoint/Breakpoint.cpp +++ b/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( Breakpoint::OptionNames::LastOptionName)]{"Names", "Hardware"};