diff options
Diffstat (limited to 'lldb/source/Breakpoint/Stoppoint.cpp')
| -rw-r--r-- | lldb/source/Breakpoint/Stoppoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Breakpoint/Stoppoint.cpp b/lldb/source/Breakpoint/Stoppoint.cpp index b5c8334333cf..94e97cd4542f 100644 --- a/lldb/source/Breakpoint/Stoppoint.cpp +++ b/lldb/source/Breakpoint/Stoppoint.cpp @@ -14,10 +14,10 @@ using namespace lldb; using namespace lldb_private; // Stoppoint constructor -Stoppoint::Stoppoint() : m_bid(LLDB_INVALID_BREAK_ID) {} +Stoppoint::Stoppoint() = default; // Destructor -Stoppoint::~Stoppoint() {} +Stoppoint::~Stoppoint() = default; break_id_t Stoppoint::GetID() const { return m_bid; } |
