aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/ScriptInterpreter.cpp
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2023-01-04 22:05:40 -0800
committerFangrui Song <i@maskray.me>2023-01-04 22:05:40 -0800
commit4215a84559bb872363eaa4ac724be8ef86c2e683 (patch)
tree46b08c115e865c8c639d3e8fe929ccbe30b723f6 /lldb/source/Interpreter/ScriptInterpreter.cpp
parent665e47777df17db406c698d57b4f3c28d67c432e (diff)
downloadllvm-4215a84559bb872363eaa4ac724be8ef86c2e683.zip
llvm-4215a84559bb872363eaa4ac724be8ef86c2e683.tar.gz
llvm-4215a84559bb872363eaa4ac724be8ef86c2e683.tar.bz2
[lldb] Remove unneeded .get() NFC
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp')
-rw-r--r--lldb/source/Interpreter/ScriptInterpreter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp
index 0820755..9572176 100644
--- a/lldb/source/Interpreter/ScriptInterpreter.cpp
+++ b/lldb/source/Interpreter/ScriptInterpreter.cpp
@@ -82,7 +82,7 @@ ScriptInterpreter::GetDataExtractorFromSBData(const lldb::SBData &data) const {
Status
ScriptInterpreter::GetStatusFromSBError(const lldb::SBError &error) const {
if (error.m_opaque_up)
- return *error.m_opaque_up.get();
+ return *error.m_opaque_up;
return Status();
}