diff --git a/icu4c/readme.html b/icu4c/readme.html index 6bd6810bdce..66f4dd55ac6 100644 --- a/icu4c/readme.html +++ b/icu4c/readme.html @@ -551,12 +551,37 @@ we recommend a small number of modifications and build options. Note that C99 compatibility is now required.
icu::UnicodeString
,
+ or do using icu::UnicodeString;
where appropriate.
+ If your code relies on the "using namespace icu;" that used to be in unicode/uversion.h,
+ then you need to update your code.-DU_USING_ICU_NAMESPACE=1
+ or by modifying unicode/uversion.h:
+Index: icu4c/source/common/unicode/uversion.h +=================================================================== +--- icu4c/source/common/unicode/uversion.h (revision 40704) ++++ icu4c/source/common/unicode/uversion.h (working copy) +@@ -127,7 +127,7 @@ + defined(U_LAYOUTEX_IMPLEMENTATION) || defined(U_TOOLUTIL_IMPLEMENTATION) + # define U_USING_ICU_NAMESPACE 0 + # else +-# define U_USING_ICU_NAMESPACE 0 ++# define U_USING_ICU_NAMESPACE 1 + # endif + # endif + # if U_USING_ICU_NAMESPACE ++
-DU_USING_ICU_NAMESPACE=0
or by modifying unicode/uversion.h:
Index: source/common/unicode/uversion.h diff --git a/icu4c/source/common/unicode/uversion.h b/icu4c/source/common/unicode/uversion.h index 0d5152e2730..4aaa8b4d606 100644 --- a/icu4c/source/common/unicode/uversion.h +++ b/icu4c/source/common/unicode/uversion.h @@ -127,7 +127,7 @@ typedef uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]; defined(U_LAYOUTEX_IMPLEMENTATION) || defined(U_TOOLUTIL_IMPLEMENTATION) # define U_USING_ICU_NAMESPACE 0 # else -# define U_USING_ICU_NAMESPACE 1 +# define U_USING_ICU_NAMESPACE 0 # endif # endif # if U_USING_ICU_NAMESPACE