mirror of
				https://github.com/taglib/taglib.git
				synced 2025-10-31 07:46:22 -04:00 
			
		
		
		
	Replace TagLib::uint with unsinged int.
This commit is contained in:
		| @ -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 | ||||
|  | ||||
|  | ||||
| @ -102,7 +102,7 @@ namespace TagLib | ||||
|     bool deref() { return ! --refCount; } | ||||
|     int count() { return refCount; } | ||||
|   private: | ||||
|     uint refCount; | ||||
|     unsigned int refCount; | ||||
| #endif | ||||
|   }; | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user