0
0
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:
rbock 2016-04-10 07:53:18 +02:00
parent c9f4e1b4a7
commit 4d538e8cb2

View File

@ -65,7 +65,7 @@ namespace sqlpp
assert_comparison_lhs_rhs_differ_t>>;
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
{