WavPack: Remove unused formal parameters.

This commit is contained in:
Tsuda Kageyu 2015-08-01 00:44:41 +09:00
parent 8f6af3f020
commit dbf9644c8d
3 changed files with 11 additions and 11 deletions

View File

@ -82,20 +82,20 @@ public:
// public members
////////////////////////////////////////////////////////////////////////////////
WavPack::File::File(FileName file, bool readProperties,
Properties::ReadStyle propertiesStyle) : TagLib::File(file)
WavPack::File::File(FileName file, bool readProperties, Properties::ReadStyle) :
TagLib::File(file),
d(new FilePrivate())
{
d = new FilePrivate;
if(isOpen())
read(readProperties, propertiesStyle);
read(readProperties);
}
WavPack::File::File(IOStream *stream, bool readProperties,
Properties::ReadStyle propertiesStyle) : TagLib::File(stream)
WavPack::File::File(IOStream *stream, bool readProperties, Properties::ReadStyle) :
TagLib::File(stream),
d(new FilePrivate())
{
d = new FilePrivate;
if(isOpen())
read(readProperties, propertiesStyle);
read(readProperties);
}
WavPack::File::~File()
@ -245,7 +245,7 @@ bool WavPack::File::hasAPETag() const
// private members
////////////////////////////////////////////////////////////////////////////////
void WavPack::File::read(bool readProperties, Properties::ReadStyle /* propertiesStyle */)
void WavPack::File::read(bool readProperties)
{
// Look for an ID3v1 tag

View File

@ -202,7 +202,7 @@ namespace TagLib {
File(const File &);
File &operator=(const File &);
void read(bool readProperties, Properties::ReadStyle propertiesStyle);
void read(bool readProperties);
long findID3v1();
long findAPE();

View File

@ -65,7 +65,7 @@ public:
// public members
////////////////////////////////////////////////////////////////////////////////
WavPack::Properties::Properties(const ByteVector & /*data*/, long /*streamLength*/, ReadStyle style) :
WavPack::Properties::Properties(const ByteVector &, long, ReadStyle style) :
AudioProperties(style),
d(new PropertiesPrivate())
{