[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 17:14:40 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGb04bc87c9edc: [lldb][NFC] Delete unused function Breakpoint::GetEventIdentifier (authored by bulbazord).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D147746/new/
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.511566.patch
Type: text/x-patch
Size: 1040 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230407/bde4d280/attachment.bin>
More information about the lldb-commits
mailing list