Correct assignment operator qualification

This commit is contained in:
Stephen Booth
2026-05-16 08:25:21 -06:00
committed by Urs Fleisch
parent 83fdf27cd7
commit 0b5296e20e

View File

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