From f50500ba8be36b909062315714db604bfd88ce14 Mon Sep 17 00:00:00 2001 From: rbock Date: Mon, 9 Feb 2015 18:39:03 +0100 Subject: [PATCH] Fixed a few superflous semicolons --- include/sqlpp11/group_by.h | 2 +- include/sqlpp11/order_by.h | 2 +- include/sqlpp11/where.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sqlpp11/group_by.h b/include/sqlpp11/group_by.h index a8f73185..52c2d53d 100644 --- a/include/sqlpp11/group_by.h +++ b/include/sqlpp11/group_by.h @@ -211,7 +211,7 @@ namespace sqlpp static_assert(not detail::has_duplicates::value, "at least one duplicate argument detected in group_by()"); return { static_cast&>(*this), group_by_data_t{expressions...} }; - }; + } }; }; diff --git a/include/sqlpp11/order_by.h b/include/sqlpp11/order_by.h index daf50517..32f7a0b8 100644 --- a/include/sqlpp11/order_by.h +++ b/include/sqlpp11/order_by.h @@ -211,7 +211,7 @@ namespace sqlpp static_assert(not detail::has_duplicates::value, "at least one duplicate argument detected in order_by()"); return { static_cast&>(*this), order_by_data_t{expressions...} }; - }; + } }; }; diff --git a/include/sqlpp11/where.h b/include/sqlpp11/where.h index 161da725..81db3c95 100644 --- a/include/sqlpp11/where.h +++ b/include/sqlpp11/where.h @@ -190,7 +190,7 @@ namespace sqlpp static void _() { static_assert(wrong_t::value, "where expression required, e.g. where(true)"); - }; + } }; // NO WHERE YET