mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 10:16:50 +00:00
Suppress -Wcast-align in curl and bzip2
Trust upstream developers of third-party code.
This commit is contained in:
parent
f2b4a46677
commit
87fde60563
@ -47,6 +47,9 @@
|
||||
/* warning C4127: conditional expression is constant*/
|
||||
# pragma warning(disable:4127)
|
||||
#endif
|
||||
#if defined(__clang__)
|
||||
# pragma clang diagnostic ignored "-Wcast-align"
|
||||
#endif
|
||||
|
||||
/*-- General stuff. --*/
|
||||
|
||||
|
@ -42,6 +42,10 @@
|
||||
#define WIN32
|
||||
#endif
|
||||
|
||||
#if defined(__clang__)
|
||||
# pragma clang diagnostic ignored "-Wcast-align"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Include configuration script results or hand-crafted
|
||||
* configuration file for platforms which lack config tool.
|
||||
|
Loading…
Reference in New Issue
Block a user