mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fixed logic::none_t
This commit is contained in:
parent
d29f27c8d3
commit
7068c8c26c
@ -46,7 +46,7 @@ namespace sqlpp
|
|||||||
std::integral_constant<bool, not std::is_same<logic_helper<B...>, logic_helper<(B and false)...>>::value>;
|
std::integral_constant<bool, not std::is_same<logic_helper<B...>, logic_helper<(B and false)...>>::value>;
|
||||||
|
|
||||||
template <bool... B>
|
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>
|
template <bool>
|
||||||
struct not_impl;
|
struct not_impl;
|
||||||
|
Loading…
Reference in New Issue
Block a user