taglib: Remove explicit invocation of default constructor
authorHugo Beauzée-Luyssen <hugo@beauzee.fr>
Wed, 16 Feb 2022 08:52:38 +0000 (09:52 +0100)
committerSebastian Ramacher <sramacher@debian.org>
Tue, 14 Jan 2025 22:09:47 +0000 (23:09 +0100)
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

index 0c0cebdae155888f50ef06d0b01c529da4d9f195..a52adfe4497700fc629f9f109be2cca6b5559009 100644 (file)
@@ -117,7 +117,7 @@ namespace VLCTagLib
 }
 
 template <class T>
-VLCTagLib::ExtResolver<T>::ExtResolver(const std::string & ext) : FileTypeResolver()
+VLCTagLib::ExtResolver<T>::ExtResolver(const std::string & ext)
 {
     this->ext = ext;
     std::transform(this->ext.begin(), this->ext.end(), this->ext.begin(), ::toupper);