mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-5445 Ignore some unnecessary warnings about casting between
undefined C types and real C++ types. X-SVN-Rev: 22356
This commit is contained in:
parent
5ba4307fc8
commit
116a585ab3
1 changed files with 2 additions and 1 deletions
|
@ -23,8 +23,9 @@ THREADSCPPFLAGS = -D_REENTRANT -D_THREAD_SAFE
|
|||
# (Ironically the solution to fix this warning is non-portable)
|
||||
# 823 Redundant preprocessing concatenation operation results in two valid
|
||||
# preprocessing tokens. This comes from INT64_C in <inttypes.h>
|
||||
# 4232 conversion to a more strictly aligned type may cause misaligned access.
|
||||
CFLAGS += -Ae +ESlit
|
||||
CXXFLAGS += +W740 +W749 +W823
|
||||
CXXFLAGS += +W740 +W749 +W823 +W4232
|
||||
|
||||
## Commands to compile
|
||||
COMPILE.c= $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -c
|
||||
|
|
Loading…
Add table
Reference in a new issue