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:
George Rhoten 2004-07-20 00:40:25 +00:00
parent 8a415970ae
commit 4482cb60e4
2 changed files with 6 additions and 4 deletions
icu4c/source/i18n

View file

@ -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)

View file

@ -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)