mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
msvc is not very good with template aliases in variadic templates
This commit is contained in:
parent
c9f4e1b4a7
commit
4d538e8cb2
@ -65,7 +65,7 @@ namespace sqlpp
|
|||||||
assert_comparison_lhs_rhs_differ_t>>;
|
assert_comparison_lhs_rhs_differ_t>>;
|
||||||
|
|
||||||
template <typename LhsType, typename... RhsType>
|
template <typename LhsType, typename... RhsType>
|
||||||
using check_in_t = check_in_impl<LhsType, wrap_operand_t<RhsType>...>;
|
using check_in_t = check_in_impl<LhsType, typename wrap_operand<RhsType>::type...>;
|
||||||
|
|
||||||
namespace detail
|
namespace detail
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user