diff options
author | Brad King <brad.king@kitware.com> | 2010-09-10 12:56:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-09-10 13:00:48 (GMT) |
commit | 87fde60563a3915234b33192d7f20b2af0c37206 (patch) | |
tree | 0a90ef2a434ca5bca2ecd67cc741dfb7dec59cc7 /Utilities/cmcurl | |
parent | f2b4a466779f5481c79d711ee2601d60ce41a6ad (diff) | |
download | CMake-87fde60563a3915234b33192d7f20b2af0c37206.zip CMake-87fde60563a3915234b33192d7f20b2af0c37206.tar.gz CMake-87fde60563a3915234b33192d7f20b2af0c37206.tar.bz2 |
Suppress -Wcast-align in curl and bzip2
Trust upstream developers of third-party code.
Diffstat (limited to 'Utilities/cmcurl')
-rw-r--r-- | Utilities/cmcurl/setup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/cmcurl/setup.h b/Utilities/cmcurl/setup.h index c49e63d..e302f35 100644 --- a/Utilities/cmcurl/setup.h +++ b/Utilities/cmcurl/setup.h @@ -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. |