From 8c7c8ece2dad0dbe0f0c1c50e6d02201b484acba Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Fri, 4 Mar 2016 17:26:02 +0900 Subject: [PATCH] Problem: Fix C++ style comment usage in C source --- src/tweetnacl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/tweetnacl.c b/src/tweetnacl.c index 0520131b..16f61af5 100644 --- a/src/tweetnacl.c +++ b/src/tweetnacl.c @@ -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