mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07:00
Mark move functions as noexcept
This commit is contained in:
parent
e408973ee6
commit
79e85d01fa
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
|
||||
Digest32() = default;
|
||||
Digest32(const Digest32 &other) = default;
|
||||
Digest32(Digest32 &&other) = default;
|
||||
Digest32(Digest32 &&other) noexcept = default;
|
||||
|
||||
Digest32(const UnderlyingType &nativeDigest)
|
||||
: m_dataPtr {new Data(nativeDigest)}
|
||||
|
@ -63,7 +63,7 @@ public:
|
|||
}
|
||||
|
||||
Digest32 &operator=(const Digest32 &other) = default;
|
||||
Digest32 &operator=(Digest32 &&other) = default;
|
||||
Digest32 &operator=(Digest32 &&other) noexcept = default;
|
||||
|
||||
operator UnderlyingType() const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue