projects
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80c302e
)
taglib: Remove explicit invocation of default constructor
author
Hugo Beauzée-Luyssen
<hugo@beauzee.fr>
Wed, 16 Feb 2022 08:52:38 +0000
(09:52 +0100)
committer
Sebastian 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
patch
|
blob
|
history
diff --git
a/modules/meta_engine/taglib.cpp
b/modules/meta_engine/taglib.cpp
index 0c0cebdae155888f50ef06d0b01c529da4d9f195..a52adfe4497700fc629f9f109be2cca6b5559009 100644
(file)
--- a/
modules/meta_engine/taglib.cpp
+++ b/
modules/meta_engine/taglib.cpp
@@
-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);