diff --git a/include/sqlpp11/select_column_list.h b/include/sqlpp11/select_column_list.h index 727e7513..36e78c91 100644 --- a/include/sqlpp11/select_column_list.h +++ b/include/sqlpp11/select_column_list.h @@ -341,7 +341,7 @@ namespace sqlpp auto tuple_merge(Columns... columns) -> decltype(std::tuple_cat(as_tuple::_(columns)...)) { return std::tuple_cat(as_tuple::_(columns)...); - }; + } template using make_select_column_list_t = diff --git a/include/sqlpp11/type_traits.h b/include/sqlpp11/type_traits.h index d11fa9f7..630457a6 100644 --- a/include/sqlpp11/type_traits.h +++ b/include/sqlpp11/type_traits.h @@ -282,7 +282,7 @@ namespace sqlpp static void _() { static_assert(wrong_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::value, "connection cannot prepare something that is not a statement"); - }; + } }; template