summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBCommandInterpreter.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2018-12-20 21:02:55 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2018-12-20 21:02:55 +0000
commit3447077a2878b71e0ced355f9a92a815706a0b11 (patch)
tree9568b7fc75bb6345952fa01bc71bda11454d507e /lldb/source/API/SBCommandInterpreter.cpp
parent0a90d7c92b1fa5b7193e7b0e1e0314ab46e76b70 (diff)
downloadbcm5719-llvm-3447077a2878b71e0ced355f9a92a815706a0b11.tar.gz
bcm5719-llvm-3447077a2878b71e0ced355f9a92a815706a0b11.zip
[API] Remove redundants get() from smart pointers. NFC
Removes redundant calls to ::get() from smart pointers in the source/API directory.. llvm-svn: 349821
Diffstat (limited to 'lldb/source/API/SBCommandInterpreter.cpp')
-rw-r--r--lldb/source/API/SBCommandInterpreter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp
index a4a9a2ae748..2a06e608c0b 100644
--- a/lldb/source/API/SBCommandInterpreter.cpp
+++ b/lldb/source/API/SBCommandInterpreter.cpp
@@ -98,7 +98,7 @@ SBCommandInterpreterRunOptions::get() const {
lldb_private::CommandInterpreterRunOptions &
SBCommandInterpreterRunOptions::ref() const {
- return *m_opaque_up.get();
+ return *m_opaque_up;
}
class CommandPluginInterfaceImplementation : public CommandObjectParsed {
OpenPOWER on IntegriCloud