diff options
-rw-r--r-- | i18nlangtag/source/languagetag/languagetag.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx index 164fc21a83c9..11cec0c7ad02 100644 --- a/i18nlangtag/source/languagetag/languagetag.cxx +++ b/i18nlangtag/source/languagetag/languagetag.cxx @@ -1338,12 +1338,12 @@ void LanguageTag::getIsoLanguageScriptCountry( OUString& rLanguage, OUString& rS namespace { -bool isLowerAscii( sal_Unicode c ) +inline bool isLowerAscii( sal_Unicode c ) { return 'a' <= c && c <= 'z'; } -bool isUpperAscii( sal_Unicode c ) +inline bool isUpperAscii( sal_Unicode c ) { return 'A' <= c && c <= 'Z'; } |