mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
Use new CI image (#3528)
* ⬆️ use new CI image * ⬆️ use new CI image * 🚨 fix warning * 🔧 remove duplicate warning flags * 💚 fix test * 📝 update compiler versions
This commit is contained in:
@ -3374,7 +3374,7 @@ template<class...> struct conjunction : std::true_type { };
|
||||
template<class B> struct conjunction<B> : B { };
|
||||
template<class B, class... Bn>
|
||||
struct conjunction<B, Bn...>
|
||||
: std::conditional<bool(B::value), conjunction<Bn...>, B>::type {};
|
||||
: std::conditional<static_cast<bool>(B::value), conjunction<Bn...>, B>::type {};
|
||||
|
||||
// https://en.cppreference.com/w/cpp/types/negation
|
||||
template<class B> struct negation : std::integral_constant < bool, !B::value > { };
|
||||
|
Reference in New Issue
Block a user