mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-4288 Fix some compiler warnings
X-SVN-Rev: 17143
This commit is contained in:
parent
531c9b9365
commit
8e08e5a7ec
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
**********************************************************************
|
||||
* Copyright (c) 2001-2003, International Business Machines
|
||||
* Copyright (c) 2001-2005, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
* Date Name Description
|
||||
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include "remtrans.h"
|
||||
|
||||
static const UChar ID[] = {65, 110, 121, 45, 0x52, 0x65, 0x6D, 0x6F, 0x76, 0x65, 0x00}; /* "Any-Remove" */
|
||||
static const UChar CURR_ID[] = {65, 110, 121, 45, 0x52, 0x65, 0x6D, 0x6F, 0x76, 0x65, 0x00}; /* "Any-Remove" */
|
||||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
|
@ -34,13 +34,13 @@ static Transliterator* RemoveTransliterator_create(const UnicodeString& /*ID*/,
|
|||
*/
|
||||
void RemoveTransliterator::registerIDs() {
|
||||
|
||||
Transliterator::_registerFactory(::ID, RemoveTransliterator_create, integerToken(0));
|
||||
Transliterator::_registerFactory(::CURR_ID, RemoveTransliterator_create, integerToken(0));
|
||||
|
||||
Transliterator::_registerSpecialInverse(UNICODE_STRING_SIMPLE("Remove"),
|
||||
UNICODE_STRING_SIMPLE("Null"), FALSE);
|
||||
}
|
||||
|
||||
RemoveTransliterator::RemoveTransliterator() : Transliterator(::ID, 0) {}
|
||||
RemoveTransliterator::RemoveTransliterator() : Transliterator(::CURR_ID, 0) {}
|
||||
|
||||
RemoveTransliterator::~RemoveTransliterator() {}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue