diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-12-20 21:02:55 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-12-20 21:02:55 +0000 |
commit | 3447077a2878b71e0ced355f9a92a815706a0b11 (patch) | |
tree | 9568b7fc75bb6345952fa01bc71bda11454d507e /lldb/source/API/SBStringList.cpp | |
parent | 0a90d7c92b1fa5b7193e7b0e1e0314ab46e76b70 (diff) | |
download | bcm5719-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/SBStringList.cpp')
-rw-r--r-- | lldb/source/API/SBStringList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBStringList.cpp b/lldb/source/API/SBStringList.cpp index 9ac69b15ebb..6ed4d4b7fb8 100644 --- a/lldb/source/API/SBStringList.cpp +++ b/lldb/source/API/SBStringList.cpp @@ -47,7 +47,7 @@ const lldb_private::StringList &SBStringList::operator*() const { return *m_opaque_ap; } -bool SBStringList::IsValid() const { return (m_opaque_ap.get() != NULL); } +bool SBStringList::IsValid() const { return (m_opaque_ap != NULL); } void SBStringList::AppendString(const char *str) { if (str != NULL) { |