mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-3862 Make sure that data isn't exported when it is only needed internally.
A linker warning on AIX brought this issue to my attention. X-SVN-Rev: 16062
This commit is contained in:
parent
8a415970ae
commit
4482cb60e4
2 changed files with 6 additions and 4 deletions
icu4c/source/i18n
|
@ -1,5 +1,7 @@
|
|||
/*
|
||||
* Copyright (C) 2001-2004, International Business Machines Corporation and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
* Copyright (c) 2001-2004, International Business Machines Corporation
|
||||
* and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
* Date Name Description
|
||||
* 07/23/01 aliu Creation.
|
||||
|
@ -17,7 +19,7 @@
|
|||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
const UChar EMPTY[] = { 0 }; // empty string: ""
|
||||
static const UChar EMPTY[] = { 0 }; // empty string: ""
|
||||
|
||||
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
**********************************************************************
|
||||
* Copyright (c) 2002-2003, International Business Machines Corporation
|
||||
* Copyright (c) 2002-2004, International Business Machines Corporation
|
||||
* and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
* Date Name Description
|
||||
|
@ -19,7 +19,7 @@
|
|||
|
||||
U_NAMESPACE_BEGIN
|
||||
|
||||
const UChar EMPTY[] = { 0 }; // empty string: ""
|
||||
static const UChar EMPTY[] = { 0 }; // empty string: ""
|
||||
|
||||
UnicodeReplacer::~UnicodeReplacer() {}
|
||||
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringReplacer)
|
||||
|
|
Loading…
Add table
Reference in a new issue