mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-5426 #ifdef out an unused variable.
X-SVN-Rev: 20462
This commit is contained in:
parent
fd3302b006
commit
1dd78e16e0
1 changed files with 4 additions and 3 deletions
|
@ -200,19 +200,20 @@ ubidi_closeProps(UBiDiProps *bdp) {
|
|||
|
||||
/* UBiDiProps singleton ----------------------------------------------------- */
|
||||
|
||||
static UBiDiProps *gBdp=NULL, *gBdpDummy=NULL;
|
||||
static UBiDiProps *gBdpDummy=NULL;
|
||||
#if !UBIDI_HARDCODE_DATA
|
||||
static UBiDiProps *gBdp=NULL;
|
||||
static UErrorCode gErrorCode=U_ZERO_ERROR;
|
||||
static int8_t gHaveData=0;
|
||||
#endif
|
||||
|
||||
static UBool U_CALLCONV
|
||||
ubidi_cleanup(void) {
|
||||
ubidi_closeProps(gBdp);
|
||||
gBdp=NULL;
|
||||
ubidi_closeProps(gBdpDummy);
|
||||
gBdpDummy=NULL;
|
||||
#if !UBIDI_HARDCODE_DATA
|
||||
ubidi_closeProps(gBdp);
|
||||
gBdp=NULL;
|
||||
gErrorCode=U_ZERO_ERROR;
|
||||
gHaveData=0;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue