From d232abc33b707d2da8ca4e4c84d8287ce0e1a47a Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Sun, 9 Jan 2022 22:54:08 -0800 Subject: [lldb] Remove LLDB_RECORD_RESULT macro --- lldb/source/API/SBThreadCollection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/API/SBThreadCollection.cpp') diff --git a/lldb/source/API/SBThreadCollection.cpp b/lldb/source/API/SBThreadCollection.cpp index 0850d01642f2..fcf066381c98 100644 --- a/lldb/source/API/SBThreadCollection.cpp +++ b/lldb/source/API/SBThreadCollection.cpp @@ -32,7 +32,7 @@ operator=(const SBThreadCollection &rhs) { if (this != &rhs) m_opaque_sp = rhs.m_opaque_sp; - return LLDB_RECORD_RESULT(*this); + return *this; } SBThreadCollection::SBThreadCollection(const ThreadCollectionSP &threads) @@ -85,5 +85,5 @@ SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { SBThread thread; if (m_opaque_sp && idx < m_opaque_sp->GetSize()) thread = m_opaque_sp->GetThreadAtIndex(idx); - return LLDB_RECORD_RESULT(thread); + return thread; } -- cgit v1.2.3