[API] Remove redundant member initialization (NFC)

Identified with readability-redundant-member-init.
This commit is contained in:
Kazu Hirata
2022-01-02 22:44:15 -08:00
parent 1461bd13c9
commit a3436f7340
44 changed files with 78 additions and 124 deletions

View File

@@ -67,7 +67,7 @@ SBThread::SBThread(const ThreadSP &lldb_object_sp)
LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::ThreadSP &), lldb_object_sp);
}
SBThread::SBThread(const SBThread &rhs) : m_opaque_sp() {
SBThread::SBThread(const SBThread &rhs) {
LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::SBThread &), rhs);
m_opaque_sp = clone(rhs.m_opaque_sp);