Skip to content

Commit

Permalink
msvc is not very good with template aliases in variadic templates
Browse files Browse the repository at this point in the history
  • Loading branch information
rbock committed Apr 10, 2016
1 parent c9f4e1b commit 4d538e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sqlpp11/basic_expression_operators.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 4d538e8

Please sign in to comment.