Skip to content

Commit b5606cf

Browse files
author
Davide Italiano
committed
[SBThread] Remove incorrect instrumentation from a function.
It's in lldb_private. apple-llvm-split-commit: 36c71f7ec971a3882d2e4015280f8af10163cde3 apple-llvm-split-dir: lldb/
1 parent d458deb commit b5606cf

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lldb/source/API/SBThreadPlan.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,7 @@ const lldb::SBThreadPlan &SBThreadPlan::operator=(const SBThreadPlan &rhs) {
8989
//----------------------------------------------------------------------
9090
SBThreadPlan::~SBThreadPlan() {}
9191

92-
lldb_private::ThreadPlan *SBThreadPlan::get() {
93-
LLDB_RECORD_METHOD_NO_ARGS(lldb_private::ThreadPlan *, SBThreadPlan, get);
94-
95-
return LLDB_RECORD_RESULT(m_opaque_sp.get());
96-
}
92+
lldb_private::ThreadPlan *SBThreadPlan::get() { return m_opaque_sp.get(); }
9793

9894
bool SBThreadPlan::IsValid() const {
9995
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBThreadPlan, IsValid);

0 commit comments

Comments
 (0)