summaryrefslogtreecommitdiff
path: root/algparam.h
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 06:44:27 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 06:44:27 +0000
commitfd7959295b8abdd5bf744312cb2fe6278401a184 (patch)
tree391087f1e05121a6c2f64a0ea085459660a26550 /algparam.h
parentd8e91d1b6e172e8126683ed6688b09e654c24556 (diff)
downloadcryptopp-fd7959295b8abdd5bf744312cb2fe6278401a184.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
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@555 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'algparam.h')
-rw-r--r--algparam.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/algparam.h b/algparam.h
index 6a22740..44e0ff3 100644
--- a/algparam.h
+++ b/algparam.h
@@ -5,6 +5,12 @@
#include "smartptr.h"
#include "secblock.h"
+#if GCC_DIAGNOSTIC_AWARE
+# pragma GCC diagnostic push
+# pragma GCC diagnostic ignored "-Wunused-value"
+# pragma GCC diagnostic ignored "-Wunused-variable"
+#endif
+
NAMESPACE_BEGIN(CryptoPP)
//! used to pass byte array input as part of a NameValuePairs object
@@ -396,4 +402,8 @@ AlgorithmParameters MakeParameters(const char *name, const T &value, bool throwI
NAMESPACE_END
+#if GCC_DIAGNOSTIC_AWARE
+# pragma GCC diagnostic pop
+#endif
+
#endif