From 57567934d96fb63315f0280eefbb4f66bf0cdd16 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Fri, 20 Sep 2013 01:11:23 +0200 Subject: inline Change-Id: I7b031d19160f7fe3d8dd0789ab68b03830135463 --- i18nlangtag/source/languagetag/languagetag.cxx | 4 ++-- 1 file 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'; } -- cgit