mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-12-31 02:00:24 -06:00
Fixed a few stray semicolons
This commit is contained in:
@@ -341,7 +341,7 @@ namespace sqlpp
|
||||
auto tuple_merge(Columns... columns) -> decltype(std::tuple_cat(as_tuple<Columns>::_(columns)...))
|
||||
{
|
||||
return std::tuple_cat(as_tuple<Columns>::_(columns)...);
|
||||
};
|
||||
}
|
||||
|
||||
template<typename Database, typename... Columns>
|
||||
using make_select_column_list_t =
|
||||
|
||||
@@ -282,7 +282,7 @@ namespace sqlpp
|
||||
static void _()
|
||||
{
|
||||
static_assert(wrong_t<T>::value, "connection cannot run something that is neither statement nor prepared statement");
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
struct assert_prepare_statement_t
|
||||
@@ -293,7 +293,7 @@ namespace sqlpp
|
||||
static void _()
|
||||
{
|
||||
static_assert(wrong_t<T>::value, "connection cannot prepare something that is not a statement");
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
template<typename T, typename Enable = void>
|
||||
|
||||
Reference in New Issue
Block a user