mirror of
https://github.com/nlohmann/json.git
synced 2026-07-05 10:05:10 +00: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:
@@ -183,7 +183,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