Replace TagLib::uint with unsinged int.

This commit is contained in:
Tsuda Kageyu 2015-12-16 12:59:43 +09:00
parent 42459fe457
commit 36b905670c
2 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ bool FLAC::File::save()
ByteVector paddingHeader = ByteVector::fromUInt(paddingLength);
paddingHeader[0] = static_cast<char>(MetadataBlock::Padding | LastBlockFlag);
data.append(paddingHeader);
data.resize(static_cast<TagLib::uint>(data.size() + paddingLength));
data.resize(static_cast<unsigned int>(data.size() + paddingLength));
// Write the data to the file

View File

@ -102,7 +102,7 @@ namespace TagLib
bool deref() { return ! --refCount; }
int count() { return refCount; }
private:
uint refCount;
unsigned int refCount;
#endif
};