Replaced tag_yes and tag_no by std::true_type and std::false_type

This commit is contained in:
Roland Bock
2013-09-29 09:02:51 +02:00
parent 581353dc53
commit d0d5fd2969
37 changed files with 86 additions and 125 deletions

View File

@@ -37,7 +37,7 @@ namespace sqlpp
template<typename Lhs, typename Rhs>
struct assignment_t
{
using _is_assignment = tag_yes;
using _is_assignment = std::true_type;
using column_type = Lhs;
using value_type = Rhs;