Commit 0782b58d authored by Luca Boccassi's avatar Luca Boccassi

Problem: tweetnacl warnings override not needed

Solution: remove it
parent 7dfbab3f
......@@ -31,8 +31,8 @@
#if defined (ZMQ_USE_TWEETNACL)
// Disable warnings for this source only, rather than for the whole
// codebase
#ifdef __GNUC__
// codebase when building with C99 or with Microsoft's compiler
#if defined __GNUC__ && __STDC_VERSION__ < 201112L
# pragma GCC diagnostic ignored "-Wsign-compare"
#elif defined _MSC_VER
# pragma warning (disable:4018 4244 4146)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment