From 83fdf27cd775eb5a782c37d4d33087fe919cffe3 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Sat, 16 May 2026 08:24:12 -0600 Subject: [PATCH] Correct assignment operator qualification --- taglib/mp4/mp4chapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/mp4/mp4chapter.cpp b/taglib/mp4/mp4chapter.cpp index 00165743..e87e49a1 100644 --- a/taglib/mp4/mp4chapter.cpp +++ b/taglib/mp4/mp4chapter.cpp @@ -58,7 +58,7 @@ MP4::Chapter &MP4::Chapter::Chapter::operator=(const Chapter &other) return *this; } -MP4::Chapter &MP4::Chapter::Chapter::operator=( +MP4::Chapter &MP4::Chapter::operator=( Chapter &&other) noexcept = default; bool MP4::Chapter::operator==(const Chapter &other) const