pwin32.h | pwin32.h | |||
---|---|---|---|---|
skipping to change at line 216 | skipping to change at line 216 | |||
#ifdef NDEBUG | #ifdef NDEBUG | |||
#define U_RELEASE 1 | #define U_RELEASE 1 | |||
#else | #else | |||
#define U_RELEASE 0 | #define U_RELEASE 0 | |||
#endif | #endif | |||
#endif | #endif | |||
/** Determine whether to disable renaming or not. This overrides the | /** Determine whether to disable renaming or not. This overrides the | |||
setting in umachine.h which is for all platforms. */ | setting in umachine.h which is for all platforms. */ | |||
#ifndef U_DISABLE_RENAMING | #ifndef U_DISABLE_RENAMING | |||
#define U_DISABLE_RENAMING 1 | #define U_DISABLE_RENAMING 0 | |||
#endif | #endif | |||
/** Determine whether to override new and delete. */ | /** Determine whether to override new and delete. */ | |||
#ifndef U_OVERRIDE_CXX_ALLOCATION | #ifndef U_OVERRIDE_CXX_ALLOCATION | |||
#define U_OVERRIDE_CXX_ALLOCATION 1 | #define U_OVERRIDE_CXX_ALLOCATION 1 | |||
#endif | #endif | |||
/** Determine whether to override placement new and delete for STL. */ | /** Determine whether to override placement new and delete for STL. */ | |||
#ifndef U_HAVE_PLACEMENT_NEW | #ifndef U_HAVE_PLACEMENT_NEW | |||
#define U_HAVE_PLACEMENT_NEW 1 | #define U_HAVE_PLACEMENT_NEW 1 | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
uversion.h | uversion.h | |||
---|---|---|---|---|
skipping to change at line 84 | skipping to change at line 84 | |||
* This value will change in the subsequent releases of ICU | * This value will change in the subsequent releases of ICU | |||
* @stable ICU 2.4 | * @stable ICU 2.4 | |||
*/ | */ | |||
#define U_ICU_VERSION_PATCHLEVEL_NUM 0 | #define U_ICU_VERSION_PATCHLEVEL_NUM 0 | |||
/** The current ICU build level version as an integer. | /** The current ICU build level version as an integer. | |||
* This value is for use by ICU clients. It defaults to 0. | * This value is for use by ICU clients. It defaults to 0. | |||
* @stable ICU 4.0 | * @stable ICU 4.0 | |||
*/ | */ | |||
#ifndef U_ICU_VERSION_BUILDLEVEL_NUM | #ifndef U_ICU_VERSION_BUILDLEVEL_NUM | |||
#define U_ICU_VERSION_BUILDLEVEL_NUM 0 | #define U_ICU_VERSION_BUILDLEVEL_NUM 1 | |||
#endif | #endif | |||
/** Glued version suffix for renamers | /** Glued version suffix for renamers | |||
* This value will change in the subsequent releases of ICU | * This value will change in the subsequent releases of ICU | |||
* @stable ICU 2.6 | * @stable ICU 2.6 | |||
*/ | */ | |||
#define U_ICU_VERSION_SUFFIX _4_2 | #define U_ICU_VERSION_SUFFIX _4_2 | |||
/** The current ICU library version as a dotted-decimal string. The patchle vel | /** The current ICU library version as a dotted-decimal string. The patchle vel and buildlevel | |||
* only appears in this string if it non-zero. | * only appears in this string if it non-zero. | |||
* This value will change in the subsequent releases of ICU | * This value will change in the subsequent releases of ICU | |||
* @stable ICU 2.4 | * @stable ICU 2.4 | |||
*/ | */ | |||
#define U_ICU_VERSION "4.2" | #define U_ICU_VERSION "4.2.0.1" | |||
/** The current ICU library major/minor version as a string without dots, f or library name suffixes. | /** The current ICU library major/minor version as a string without dots, f or library name suffixes. | |||
* This value will change in the subsequent releases of ICU | * This value will change in the subsequent releases of ICU | |||
* @stable ICU 2.6 | * @stable ICU 2.6 | |||
*/ | */ | |||
#define U_ICU_VERSION_SHORT "42" | #define U_ICU_VERSION_SHORT "42" | |||
/** An ICU version consists of up to 4 numbers from 0..255. | /** An ICU version consists of up to 4 numbers from 0..255. | |||
* @stable ICU 2.4 | * @stable ICU 2.4 | |||
*/ | */ | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||