Fixed a bunch of smaller migration errors

This commit is contained in:
rbock
2014-02-08 22:24:05 +01:00
parent 68750aac80
commit 3c6e7cb89a
14 changed files with 157 additions and 161 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ namespace sqlpp
{
template<
typename Table,
typename InsertValueList,
typename InsertValueList
>
struct check_insert_t
{
@@ -140,7 +140,7 @@ namespace sqlpp
constexpr auto dynamic_insert_into(const Database&, Table table)
-> insert_t<Database, vendor::single_table_t<void, Table>, vendor::no_insert_value_list_t>
{
return { blank_insert_t<Database>(), vendor::single_table_t<Database, Table>{table} };
return { blank_insert_t<Database>(), vendor::single_table_t<void, Table>{table} };
}
}