mirror of
https://github.com/taglib/taglib.git
synced 2026-06-14 02:09:27 -04:00
Inspection: Code redundancies
This commit is contained in:
@@ -456,12 +456,12 @@ void FileRef::swap(FileRef &ref) noexcept
|
||||
|
||||
bool FileRef::operator==(const FileRef &ref) const
|
||||
{
|
||||
return (ref.d->file == d->file);
|
||||
return ref.d->file == d->file;
|
||||
}
|
||||
|
||||
bool FileRef::operator!=(const FileRef &ref) const
|
||||
{
|
||||
return (ref.d->file != d->file);
|
||||
return ref.d->file != d->file;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user