Clear type limits warning using GCC

pull/795/head
Jeffrey Walton 2019-01-22 02:37:38 -05:00
parent c22f37f051
commit df3f104eb2
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
# if defined(__clang__)
# pragma GCC diagnostic ignored "-Wtautological-compare"
# elif defined(__GNUC__)
# pragma GCC diagnostic ignored "-Wtype-limits"
# endif
#endif