[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

@@ -64,7 +64,7 @@ SBFrame::SBFrame(const StackFrameSP &lldb_object_sp)
lldb_object_sp);
}
SBFrame::SBFrame(const SBFrame &rhs) : m_opaque_sp() {
SBFrame::SBFrame(const SBFrame &rhs) {
LLDB_RECORD_CONSTRUCTOR(SBFrame, (const lldb::SBFrame &), rhs);
m_opaque_sp = clone(rhs.m_opaque_sp);