Use default constructor, destructor

This commit is contained in:
Chocobo1
2023-05-05 01:57:01 +08:00
parent 3fbe380582
commit 8219b1f695
20 changed files with 15 additions and 46 deletions

View File

@@ -338,7 +338,7 @@ TorrentImpl::TorrentImpl(SessionImpl *session, lt::session *nativeSession
// == END UPGRADE CODE ==
}
TorrentImpl::~TorrentImpl() {}
TorrentImpl::~TorrentImpl() = default;
bool TorrentImpl::isValid() const
{

View File

@@ -66,12 +66,6 @@ TorrentInfo::TorrentInfo(const lt::torrent_info &nativeInfo)
}
}
TorrentInfo::TorrentInfo(const TorrentInfo &other)
: m_nativeInfo {other.m_nativeInfo}
, m_nativeIndexes {other.m_nativeIndexes}
{
}
TorrentInfo &TorrentInfo::operator=(const TorrentInfo &other)
{
if (this != &other)

View File

@@ -54,7 +54,7 @@ namespace BitTorrent
public:
TorrentInfo() = default;
TorrentInfo(const TorrentInfo &other);
TorrentInfo(const TorrentInfo &other) = default;
explicit TorrentInfo(const lt::torrent_info &nativeInfo);