mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fixed a few stray semicolons
This commit is contained in:
parent
c4d77372cf
commit
7e36281e5d
@ -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 =
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user