Skip to content

Commit

Permalink
Problem: Fix C++ style comment usage in C source
Browse files Browse the repository at this point in the history
  • Loading branch information
obache committed Mar 4, 2016
1 parent 36abdf7 commit 8c7c8ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/tweetnacl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8c7c8ec

Please sign in to comment.