ICU-4567 build fixes

X-SVN-Rev: 21960
This commit is contained in:
Steven R. Loomis 2007-07-13 17:01:31 +00:00
parent 9bc3cbe26e
commit e083454621
2 changed files with 2 additions and 4 deletions

View file

@ -58,7 +58,7 @@ T_CTEST_API const UnicodeString& T_CTEST_EXPORT2 udbg_enumString(UDebugEnumType
}
}
T_CTEST_API extern int32_t T_CTEST_EXPORT2 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) {
T_CTEST_API int32_t T_CTEST_EXPORT2 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) {
if(type<0||type>=UDBG_ENUM_COUNT) {
return -1;
}
@ -74,7 +74,7 @@ T_CTEST_API extern int32_t T_CTEST_EXPORT2 udbg_enumByString(UDebugEnumType typ
}
// from DataMap::utoi
T_CTEST_API extern int32_t
T_CTEST_API int32_t
udbg_stoi(const UnicodeString &s)
{
char ch[256];

View file

@ -14,8 +14,6 @@
#include "unicode/utypes.h"
// Calendar
enum UDebugEnumType {
UDBG_UDebugEnumType = 0, // Self-referential, strings for UDebugEnumType. Count=ENUM_COUNT.
UDBG_UCalendarDateFields, // UCalendarDateFields. Count=UCAL_FIELD_COUNT. Unsupported if UCONFIG_NO_FORMATTING.