aboutsummaryrefslogtreecommitdiff
path: root/source/Breakpoint/StoppointCallbackContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Breakpoint/StoppointCallbackContext.cpp')
-rw-r--r--source/Breakpoint/StoppointCallbackContext.cpp27
1 files changed, 9 insertions, 18 deletions
diff --git a/source/Breakpoint/StoppointCallbackContext.cpp b/source/Breakpoint/StoppointCallbackContext.cpp
index 9932843714f8..3d24eb78c455 100644
--- a/source/Breakpoint/StoppointCallbackContext.cpp
+++ b/source/Breakpoint/StoppointCallbackContext.cpp
@@ -15,24 +15,15 @@
using namespace lldb_private;
-StoppointCallbackContext::StoppointCallbackContext() :
- event (nullptr),
- exe_ctx_ref (),
- is_synchronous (false)
-{
-}
+StoppointCallbackContext::StoppointCallbackContext()
+ : event(nullptr), exe_ctx_ref(), is_synchronous(false) {}
-StoppointCallbackContext::StoppointCallbackContext(Event *e, const ExecutionContext &exe_ctx, bool synchronously) :
- event (e),
- exe_ctx_ref (exe_ctx),
- is_synchronous(synchronously)
-{
-}
+StoppointCallbackContext::StoppointCallbackContext(
+ Event *e, const ExecutionContext &exe_ctx, bool synchronously)
+ : event(e), exe_ctx_ref(exe_ctx), is_synchronous(synchronously) {}
-void
-StoppointCallbackContext::Clear()
-{
- event = nullptr;
- exe_ctx_ref.Clear();
- is_synchronous = false;
+void StoppointCallbackContext::Clear() {
+ event = nullptr;
+ exe_ctx_ref.Clear();
+ is_synchronous = false;
}