diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-08-06 13:20:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-10-15 21:16:44 (GMT) |
commit | 2db55ffa56a69c4b55410afb9b40ab20f4025837 (patch) | |
tree | 78a498981c6d77fa0b148db021ca628b2d44a57b /Source/cm_sha2.c | |
parent | a7596fef6e8d6938ce0d7fcba47e896f288b12b4 (diff) | |
download | CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.zip CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.tar.gz CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.tar.bz2 |
Remove borland workarounds.
CMake 3.0 is the last release to require to be able to build with
Borland.
Diffstat (limited to 'Source/cm_sha2.c')
-rw-r--r-- | Source/cm_sha2.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cm_sha2.c b/Source/cm_sha2.c index 24de2b2..4738920 100644 --- a/Source/cm_sha2.c +++ b/Source/cm_sha2.c @@ -103,9 +103,6 @@ typedef cm_sha2_uint32_t sha_word32; /* Exactly 4 bytes */ typedef cm_sha2_uint64_t sha_word64; /* Exactly 8 bytes */ #define SHA_UINT32_C(x) cmIML_INT_UINT32_C(x) #define SHA_UINT64_C(x) cmIML_INT_UINT64_C(x) -#if defined(__BORLANDC__) -# pragma warn -8004 /* variable assigned value that is never used */ -#endif #if defined(__clang__) # pragma clang diagnostic ignored "-Wcast-align" #endif |