mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-535 Fixed some compiler warnings
X-SVN-Rev: 2532
This commit is contained in:
parent
4178a62d73
commit
421c0b9697
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ typedef struct Run {
|
|||
} Run;
|
||||
|
||||
/* in a Run, logicalStart will get this bit set if the run level is odd */
|
||||
#define INDEX_ODD_BIT (1L<<31)
|
||||
#define INDEX_ODD_BIT (1UL<<31)
|
||||
|
||||
#define MAKE_INDEX_ODD_PAIR(index, level) (index|((int32_t)level<<31))
|
||||
#define ADD_ODD_BIT_FROM_LEVEL(x, level) ((x)|=((int32_t)level<<31))
|
||||
|
|
Loading…
Add table
Reference in a new issue