Problem: formatting issues in the CI

Solution: commit clang-format-diff
This commit is contained in:
Luca Boccassi 2018-03-10 12:44:27 +00:00
parent fef99d6c50
commit 8d544ef1c4
9 changed files with 28 additions and 26 deletions

View File

@ -38,7 +38,9 @@
Disable warnings for this source only, rather than for the whole
codebase when building with C99 (gcc >= 4.2) or with Microsoft's compiler
*/
#if defined __GNUC__ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) && __STDC_VERSION__ < 201112L
#if defined __GNUC__ \
&& (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) \
&& __STDC_VERSION__ < 201112L
#pragma GCC diagnostic ignored "-Wsign-compare"
#elif defined _MSC_VER
#pragma warning(disable : 4018 4244 4146)