From 7e36281e5d3bf19dba9504558787ae52f3ed9abb Mon Sep 17 00:00:00 2001 From: rbock Date: Mon, 9 Feb 2015 07:36:53 +0100 Subject: [PATCH] Fixed a few stray semicolons --- include/sqlpp11/select_column_list.h | 2 +- include/sqlpp11/type_traits.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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