[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:
Jonas Devlieghere
2020-02-17 22:57:06 -08:00
parent 21efb06f0a
commit 866b7a6519
50 changed files with 62 additions and 62 deletions

View File

@@ -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;