Clear tautological compare warning with Clang (GH #777)

This commit is contained in:
Jeffrey Walton 2019-01-10 13:11:43 -05:00
parent 1ab72cd8fb
commit 22a25c0e84
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -18,6 +18,11 @@
# include <omp.h> # include <omp.h>
#endif #endif
// Issue 777
#if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
# pragma GCC diagnostic ignored "-Wtautological-compare"
#endif
ANONYMOUS_NAMESPACE_BEGIN ANONYMOUS_NAMESPACE_BEGIN
using CryptoPP::byte; using CryptoPP::byte;