mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Compile without warnings with MSVC
This commit is contained in:
parent
1bc5acd7a7
commit
fb1c744daf
@ -46,12 +46,12 @@ static bool stringManagementEnabled = true;
|
||||
|
||||
void taglib_set_strings_unicode(BOOL unicode)
|
||||
{
|
||||
unicodeStrings = bool(unicode);
|
||||
unicodeStrings = (unicode != 0);
|
||||
}
|
||||
|
||||
void taglib_set_string_management_enabled(BOOL management)
|
||||
{
|
||||
stringManagementEnabled = bool(management);
|
||||
stringManagementEnabled = (management != 0);
|
||||
}
|
||||
|
||||
void taglib_free(void* pointer)
|
||||
|
Loading…
x
Reference in New Issue
Block a user