From 8c90fc7f87dc6ed50d13582932147c6bb478af4a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Wed, 16 Feb 2022 09:52:38 +0100 Subject: [PATCH] taglib: Remove explicit invocation of default constructor This is already done implicitly (cherry picked from commit 93842f650548d6f29ec13cf0679bf49cf5ce107c) Gbp-Pq: Name 0048-taglib-Remove-explicit-invocation-of-default-constru.patch --- modules/meta_engine/taglib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp index 0c0cebda..a52adfe4 100644 --- a/modules/meta_engine/taglib.cpp +++ b/modules/meta_engine/taglib.cpp @@ -117,7 +117,7 @@ namespace VLCTagLib } template -VLCTagLib::ExtResolver::ExtResolver(const std::string & ext) : FileTypeResolver() +VLCTagLib::ExtResolver::ExtResolver(const std::string & ext) { this->ext = ext; std::transform(this->ext.begin(), this->ext.end(), this->ext.begin(), ::toupper); -- 2.30.2