From 7010d112bad6b3a0a8e2740f086d10185c12e558 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Sat, 16 May 2026 08:20:42 -0600 Subject: [PATCH] Correct destructor 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 2222748f..00165743 100644 --- a/taglib/mp4/mp4chapter.cpp +++ b/taglib/mp4/mp4chapter.cpp @@ -50,7 +50,7 @@ MP4::Chapter::Chapter(const Chapter &other) : MP4::Chapter::Chapter(Chapter &&other) noexcept = default; -MP4::Chapter::Chapter::~Chapter() = default; +MP4::Chapter::~Chapter() = default; MP4::Chapter &MP4::Chapter::Chapter::operator=(const Chapter &other) {