0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 04:47:18 +08:00

Fixed a few stray semicolons

This commit is contained in:
rbock 2015-02-09 07:36:53 +01:00
parent c4d77372cf
commit 7e36281e5d
2 changed files with 3 additions and 3 deletions

View File

@ -341,7 +341,7 @@ namespace sqlpp
auto tuple_merge(Columns... columns) -> decltype(std::tuple_cat(as_tuple<Columns>::_(columns)...)) auto tuple_merge(Columns... columns) -> decltype(std::tuple_cat(as_tuple<Columns>::_(columns)...))
{ {
return std::tuple_cat(as_tuple<Columns>::_(columns)...); return std::tuple_cat(as_tuple<Columns>::_(columns)...);
}; }
template<typename Database, typename... Columns> template<typename Database, typename... Columns>
using make_select_column_list_t = using make_select_column_list_t =

View File

@ -282,7 +282,7 @@ namespace sqlpp
static void _() static void _()
{ {
static_assert(wrong_t<T>::value, "connection cannot run something that is neither statement nor prepared statement"); static_assert(wrong_t<T>::value, "connection cannot run something that is neither statement nor prepared statement");
}; }
}; };
struct assert_prepare_statement_t struct assert_prepare_statement_t
@ -293,7 +293,7 @@ namespace sqlpp
static void _() static void _()
{ {
static_assert(wrong_t<T>::value, "connection cannot prepare something that is not a statement"); static_assert(wrong_t<T>::value, "connection cannot prepare something that is not a statement");
}; }
}; };
template<typename T, typename Enable = void> template<typename T, typename Enable = void>