Fix a warning about a non-existant warning under Clang.

pull/397/head
RaptorFactor 2017-05-21 01:16:08 -07:00
parent b51386adc0
commit c925c62509
1 changed files with 2 additions and 0 deletions

View File

@ -10,8 +10,10 @@
#if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
# pragma GCC diagnostic ignored "-Wunused"
#if !defined(__clang__)
# pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#endif
#endif
// Issue 340
#if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE