0
0
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:
rbock 2015-10-03 20:46:43 +02:00
parent d29f27c8d3
commit 7068c8c26c

View File

@ -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;