From 6f36e70795743690c59042e20f1c2059b00f84b7 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 20 Jun 2013 16:38:40 +0200 Subject: [PATCH] -Werror,-Wdeprecated-register Change-Id: Idacccba79c1c2973e5f20804e628f6043988888d --- unotools/source/i18n/charclass.cxx | 8 ++++---- 1 file 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 ) )