diff options
| author | Kazu Hirata <kazu@google.com> | 2022-01-02 22:44:15 -0800 |
|---|---|---|
| committer | Kazu Hirata <kazu@google.com> | 2022-01-02 22:44:16 -0800 |
| commit | a3436f7340cb5bdb9dddf2b6b3e72ca6cf9f7e22 (patch) | |
| tree | ab36bef64c2d362ece8e7d07bff710305dd14635 /lldb/source/API/SBThreadCollection.cpp | |
| parent | 1461bd13c91b78cc20b097e3dd9231f52f96ece0 (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.cpp | 2 |
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); } |
