mirror of
https://github.com/taglib/taglib.git
synced 2025-11-17 07:02:53 -05:00
Fix compilation errors with Visual Studio 2010
This commit is contained in:
@ -260,7 +260,7 @@ PropertyMap APE::Tag::setProperties(const PropertyMap &origProps)
|
||||
|
||||
bool APE::Tag::checkKey(const String &key)
|
||||
{
|
||||
if(key.size() < 2 or key.size() > 16)
|
||||
if(key.size() < 2 || key.size() > 16)
|
||||
return false;
|
||||
for(String::ConstIterator it = key.begin(); it != key.end(); it++)
|
||||
// only allow printable ASCII including space (32..127)
|
||||
|
||||
Reference in New Issue
Block a user