From 3f20ab8dbaa53082b5ae36dbf5f2aa819d43b53f Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Sun, 8 May 2005 06:01:45 +0000 Subject: [PATCH] ICU-4189 Fix for UCONFIG_NO_CONVERSION. X-SVN-Rev: 17567 --- icu4c/source/i18n/unicode/fmtable.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/icu4c/source/i18n/unicode/fmtable.h b/icu4c/source/i18n/unicode/fmtable.h index c2aeec7f39a..8692ee8ed34 100644 --- a/icu4c/source/i18n/unicode/fmtable.h +++ b/icu4c/source/i18n/unicode/fmtable.h @@ -1,6 +1,6 @@ /* ******************************************************************************** -* Copyright (C) 1997-2004, International Business Machines +* Copyright (C) 1997-2005, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************** * @@ -88,6 +88,7 @@ public: */ Formattable(int64_t ll); +#if !UCONFIG_NO_CONVERSION /** * Creates a Formattable object with a char string pointer. * Assumes that the char string is null terminated. @@ -95,6 +96,7 @@ public: * @stable ICU 2.0 */ Formattable(const char* strToCopy); +#endif /** * Creates a Formattable object with a UnicodeString object to copy from.