Problem: Fix C++ style comment usage in C source

This commit is contained in:
OBATA Akio 2016-03-04 17:26:02 +09:00
parent 36abdf7bd5
commit 8c7c8ece2d

View File

@ -30,8 +30,10 @@
#include "platform.hpp"
#if defined (ZMQ_USE_TWEETNACL)
// Disable warnings for this source only, rather than for the whole
// codebase when building with C99 or with Microsoft's compiler
/*
Disable warnings for this source only, rather than for the whole
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