We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d458deb commit b5606cfCopy full SHA for b5606cf
lldb/source/API/SBThreadPlan.cpp
@@ -89,11 +89,7 @@ const lldb::SBThreadPlan &SBThreadPlan::operator=(const SBThreadPlan &rhs) {
89
//----------------------------------------------------------------------
90
SBThreadPlan::~SBThreadPlan() {}
91
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
-}
+lldb_private::ThreadPlan *SBThreadPlan::get() { return m_opaque_sp.get(); }
97
98
bool SBThreadPlan::IsValid() const {
99
LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBThreadPlan, IsValid);
0 commit comments