diff options
author | Fangrui Song <i@maskray.me> | 2023-01-04 22:05:40 -0800 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2023-01-04 22:05:40 -0800 |
commit | 4215a84559bb872363eaa4ac724be8ef86c2e683 (patch) | |
tree | 46b08c115e865c8c639d3e8fe929ccbe30b723f6 /lldb/source/Interpreter/ScriptInterpreter.cpp | |
parent | 665e47777df17db406c698d57b4f3c28d67c432e (diff) | |
download | llvm-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.cpp | 2 |
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(); } |