From 0b5296e20e4dfe6bf248ff90d7618dc4466d49c4 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Sat, 16 May 2026 08:25:21 -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 e87e49a1..04271884 100644 --- a/taglib/mp4/mp4chapter.cpp +++ b/taglib/mp4/mp4chapter.cpp @@ -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;