summaryrefslogtreecommitdiff
path: root/fipstest.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-06-29 02:09:02 -0400
committerJeffrey Walton <noloader@gmail.com>2015-06-29 02:09:02 -0400
commita14a5696e1d0361c370da817ed9531f71e5dc3d2 (patch)
tree72885c8f8ad62630a12e240037c0d0c18b836eac /fipstest.cpp
parent44a5c2c86042a4c6900b977ed3c3bf722f63d34b (diff)
downloadcryptopp-git-a14a5696e1d0361c370da817ed9531f71e5dc3d2.tar.gz
Added GCC_DIAGNOSTIC_AWARE to help suppress some warnings on contemporary compilers. The macro was needed to help with managing old compilers, like GCC 4.2.1, present on OpenBSD
Diffstat (limited to 'fipstest.cpp')
-rw-r--r--fipstest.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/fipstest.cpp b/fipstest.cpp
index e882742e..edb75dc7 100644
--- a/fipstest.cpp
+++ b/fipstest.cpp
@@ -23,6 +23,11 @@ extern "C" {_CRTIMP void __cdecl _CRT_DEBUGGER_HOOK(int);}
#include <iostream>
+#if GCC_DIAGNOSTIC_AWARE
+# pragma GCC diagnostic ignored "-Wunused-value"
+# pragma GCC diagnostic ignored "-Wunused-variable"
+#endif
+
NAMESPACE_BEGIN(CryptoPP)
extern PowerUpSelfTestStatus g_powerUpSelfTestStatus;