mirror of
https://github.com/taglib/taglib.git
synced 2025-07-19 21:44:24 -04:00
Fix conversion compiler warnings
Using a release build with GCC 14.2.0 and -Wextra -Wconversion -Wall. The generated binaries are not changed by this commit.
This commit is contained in:
@ -560,7 +560,7 @@ public:
|
||||
// reverse
|
||||
{
|
||||
for(int i = 0; i < 256; i++){
|
||||
all[i]=static_cast<unsigned char>(255)-i;
|
||||
all[i]=static_cast<unsigned char>(255 - i);
|
||||
}
|
||||
ByteVector b64 = all.toBase64();
|
||||
ByteVector original = ByteVector::fromBase64(b64);
|
||||
|
Reference in New Issue
Block a user