From f73363f1dd94996356cefbf24388f561891acf0b Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Sat, 28 Jul 2018 11:09:23 +0000 Subject: Vendor import of lldb trunk r338150: https://llvm.org/svn/llvm-project/lldb/trunk@338150 --- source/API/SBBreakpointName.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'source/API/SBBreakpointName.cpp') diff --git a/source/API/SBBreakpointName.cpp b/source/API/SBBreakpointName.cpp index 2205280b9e5f2..a6742e3b89ec9 100644 --- a/source/API/SBBreakpointName.cpp +++ b/source/API/SBBreakpointName.cpp @@ -52,8 +52,8 @@ public: bool operator==(const SBBreakpointNameImpl &rhs); bool operator!=(const SBBreakpointNameImpl &rhs); - // For now we take a simple approach and only keep the name, and relook - // up the location when we need it. + // For now we take a simple approach and only keep the name, and relook up + // the location when we need it. TargetSP GetTarget() const { return m_target_wp.lock(); @@ -115,8 +115,7 @@ SBBreakpointName::SBBreakpointName() {} SBBreakpointName::SBBreakpointName(SBTarget &sb_target, const char *name) { m_impl_up.reset(new SBBreakpointNameImpl(sb_target, name)); - // Call FindBreakpointName here to make sure the name is valid, reset if - // not: + // Call FindBreakpointName here to make sure the name is valid, reset if not: BreakpointName *bp_name = GetBreakpointName(); if (!bp_name) m_impl_up.reset(); @@ -133,8 +132,7 @@ SBBreakpointName::SBBreakpointName(SBBreakpoint &sb_bkpt, const char *name) m_impl_up.reset(new SBBreakpointNameImpl(target.shared_from_this(), name)); - // Call FindBreakpointName here to make sure the name is valid, reset if - // not: + // Call FindBreakpointName here to make sure the name is valid, reset if not: BreakpointName *bp_name = GetBreakpointName(); if (!bp_name) { m_impl_up.reset(); -- cgit v1.3