mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-26 00:40:05 +01:00
trunk/branch integration: compile fix
This commit is contained in:
@@ -56,22 +56,6 @@ void Unicode::properties(int ch, CharacterProperties& props)
|
||||
}
|
||||
|
||||
|
||||
bool Unicode::isLower(int ch)
|
||||
{
|
||||
CharacterProperties props;
|
||||
properties(ch, props);
|
||||
return props.category == UCP_LETTER && props.type == UCP_LOWER_CASE_LETTER;
|
||||
}
|
||||
|
||||
|
||||
bool Unicode::isUpper(int ch)
|
||||
{
|
||||
CharacterProperties props;
|
||||
properties(ch, props);
|
||||
return props.category == UCP_LETTER && props.type == UCP_UPPER_CASE_LETTER;
|
||||
}
|
||||
|
||||
|
||||
int Unicode::toLower(int ch)
|
||||
{
|
||||
if (isUpper(ch))
|
||||
|
||||
Reference in New Issue
Block a user