Disable cotire on travis

Make some workarounds for clang because it poorly supports -Wold-style-cast
This commit is contained in:
Nekotekina 2020-02-21 15:39:40 +03:00
parent 972e0ab31d
commit 5e75a0c497
6 changed files with 37 additions and 16 deletions

View file

@ -10,6 +10,11 @@
#include <cmath>
#include <atomic>
#if !defined(_MSC_VER) && defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wold-style-cast"
#endif
#if defined(_MSC_VER)
#define SSSE3_FUNC
#else