summaryrefslogtreecommitdiff
path: root/lldb/source/API/SBThreadCollection.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-01-02 22:44:15 -0800
committerKazu Hirata <kazu@google.com>2022-01-02 22:44:16 -0800
commita3436f7340cb5bdb9dddf2b6b3e72ca6cf9f7e22 (patch)
treeab36bef64c2d362ece8e7d07bff710305dd14635 /lldb/source/API/SBThreadCollection.cpp
parent1461bd13c91b78cc20b097e3dd9231f52f96ece0 (diff)
[API] Remove redundant member initialization (NFC)
Identified with readability-redundant-member-init.
Diffstat (limited to 'lldb/source/API/SBThreadCollection.cpp')
-rw-r--r--lldb/source/API/SBThreadCollection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBThreadCollection.cpp b/lldb/source/API/SBThreadCollection.cpp
index bfca864d6bcd..cbcf20d9dd66 100644
--- a/lldb/source/API/SBThreadCollection.cpp
+++ b/lldb/source/API/SBThreadCollection.cpp
@@ -14,7 +14,7 @@
using namespace lldb;
using namespace lldb_private;
-SBThreadCollection::SBThreadCollection() : m_opaque_sp() {
+SBThreadCollection::SBThreadCollection() {
LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBThreadCollection);
}