summaryrefslogtreecommitdiffstats
path: root/unotools/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-06-20 16:38:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-06-20 16:38:40 +0200
commit6f36e70795743690c59042e20f1c2059b00f84b7 (patch)
tree674b9dbb72c647913e3f3b877c4b1b520cca9ec3 /unotools/source
parent-Werror,-Wheader-guard (diff)
downloadcore-6f36e70795743690c59042e20f1c2059b00f84b7.tar.gz
core-6f36e70795743690c59042e20f1c2059b00f84b7.zip
-Werror,-Wdeprecated-register
Change-Id: Idacccba79c1c2973e5f20804e628f6043988888d
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/i18n/charclass.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/i18n/charclass.cxx b/unotools/source/i18n/charclass.cxx
index cd8d036ab601..35f327238609 100644
--- a/unotools/source/i18n/charclass.cxx
+++ b/unotools/source/i18n/charclass.cxx
@@ -81,8 +81,8 @@ sal_Bool CharClass::isAsciiNumeric( const String& rStr )
{
if ( !rStr.Len() )
return sal_False;
- register const sal_Unicode* p = rStr.GetBuffer();
- register const sal_Unicode* const pStop = p + rStr.Len();
+ const sal_Unicode* p = rStr.GetBuffer();
+ const sal_Unicode* const pStop = p + rStr.Len();
do
{
if ( !isAsciiDigit( *p ) )
@@ -97,8 +97,8 @@ sal_Bool CharClass::isAsciiAlpha( const String& rStr )
{
if ( !rStr.Len() )
return sal_False;
- register const sal_Unicode* p = rStr.GetBuffer();
- register const sal_Unicode* const pStop = p + rStr.Len();
+ const sal_Unicode* p = rStr.GetBuffer();
+ const sal_Unicode* const pStop = p + rStr.Len();
do
{
if ( !isAsciiAlpha( *p ) )