mirror of
https://github.com/taglib/taglib.git
synced 2026-05-25 13:08:55 -04:00
Correct assignment operator qualification
This commit is contained in:
committed by
Urs Fleisch
parent
83fdf27cd7
commit
0b5296e20e
@@ -52,7 +52,7 @@ MP4::Chapter::Chapter(Chapter &&other) noexcept = default;
|
||||
|
||||
MP4::Chapter::~Chapter() = default;
|
||||
|
||||
MP4::Chapter &MP4::Chapter::Chapter::operator=(const Chapter &other)
|
||||
MP4::Chapter &MP4::Chapter::operator=(const Chapter &other)
|
||||
{
|
||||
Chapter(other).swap(*this);
|
||||
return *this;
|
||||
|
||||
Reference in New Issue
Block a user