mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-10 07:02:11 -06:00
Fixed logic::none_t
This commit is contained in:
@@ -46,7 +46,7 @@ namespace sqlpp
|
||||
std::integral_constant<bool, not std::is_same<logic_helper<B...>, logic_helper<(B and false)...>>::value>;
|
||||
|
||||
template <bool... B>
|
||||
using none_t = std::is_same<logic_helper<B...>, logic_helper<(B or false)...>>;
|
||||
using none_t = std::is_same<logic_helper<B...>, logic_helper<(B and false)...>>;
|
||||
|
||||
template <bool>
|
||||
struct not_impl;
|
||||
|
||||
Reference in New Issue
Block a user