diff options
Diffstat (limited to 'lldb/source/Breakpoint/Stoppoint.cpp')
-rw-r--r-- | lldb/source/Breakpoint/Stoppoint.cpp | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/lldb/source/Breakpoint/Stoppoint.cpp b/lldb/source/Breakpoint/Stoppoint.cpp index 583ab47..dbc832b 100644 --- a/lldb/source/Breakpoint/Stoppoint.cpp +++ b/lldb/source/Breakpoint/Stoppoint.cpp @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#include "lldb/lldb-private.h" #include "lldb/Breakpoint/Stoppoint.h" +#include "lldb/lldb-private.h" // C Includes // C++ Includes @@ -21,26 +21,13 @@ using namespace lldb_private; //---------------------------------------------------------------------- // Stoppoint constructor //---------------------------------------------------------------------- -Stoppoint::Stoppoint() : - m_bid (LLDB_INVALID_BREAK_ID) -{ -} +Stoppoint::Stoppoint() : m_bid(LLDB_INVALID_BREAK_ID) {} //---------------------------------------------------------------------- // Destructor //---------------------------------------------------------------------- -Stoppoint::~Stoppoint() -{ -} +Stoppoint::~Stoppoint() {} -break_id_t -Stoppoint::GetID () const -{ - return m_bid; -} +break_id_t Stoppoint::GetID() const { return m_bid; } -void -Stoppoint::SetID (break_id_t bid) -{ - m_bid = bid; -} +void Stoppoint::SetID(break_id_t bid) { m_bid = bid; } |