mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Default FileName copy constructor (#1118)
Found with: modernize-use-equals-default Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
128c55bc53
commit
29e88cfe66
@ -59,10 +59,7 @@ FileName::FileName(const char *name) :
|
||||
{
|
||||
}
|
||||
|
||||
FileName::FileName(const FileName &name) :
|
||||
m_wname(name.m_wname)
|
||||
{
|
||||
}
|
||||
FileName::FileName(const FileName &name) = default;
|
||||
|
||||
FileName::operator const wchar_t *() const
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user