[lldb] Replace empty ctor en dtor bodies with =default (NFC)
Use = default instead of empty constructor and destructor bodies in the API layer.
This commit is contained in:
@@ -38,7 +38,7 @@ operator=(const SBThreadCollection &rhs) {
|
||||
SBThreadCollection::SBThreadCollection(const ThreadCollectionSP &threads)
|
||||
: m_opaque_sp(threads) {}
|
||||
|
||||
SBThreadCollection::~SBThreadCollection() {}
|
||||
SBThreadCollection::~SBThreadCollection() = default;
|
||||
|
||||
void SBThreadCollection::SetOpaque(const lldb::ThreadCollectionSP &threads) {
|
||||
m_opaque_sp = threads;
|
||||
|
||||
Reference in New Issue
Block a user