summaryrefslogtreecommitdiff
path: root/i18nlangtag
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-09-20 01:11:23 +0200
committerEike Rathke <erack@redhat.com>2013-09-20 01:11:31 +0200
commit57567934d96fb63315f0280eefbb4f66bf0cdd16 (patch)
treeeda92e3c7b071745069cefd4aad7e090cff8128e /i18nlangtag
parent3f3e73bd380fa9b8ec772685dd14edf6df454f45 (diff)
inline
Change-Id: I7b031d19160f7fe3d8dd0789ab68b03830135463
Diffstat (limited to 'i18nlangtag')
-rw-r--r--i18nlangtag/source/languagetag/languagetag.cxx4
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';
}