diff --git a/include/sqlpp11/aggregate_functions/avg.h b/include/sqlpp11/aggregate_functions/avg.h index b7f75feb..515e4225 100644 --- a/include/sqlpp11/aggregate_functions/avg.h +++ b/include/sqlpp11/aggregate_functions/avg.h @@ -123,6 +123,6 @@ namespace sqlpp static_assert(is_numeric_t>::value, "avg() requires a numeric value expression as argument"); return {t}; } -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/aggregate_functions/count.h b/include/sqlpp11/aggregate_functions/count.h index 8ff040e0..272e3c06 100644 --- a/include/sqlpp11/aggregate_functions/count.h +++ b/include/sqlpp11/aggregate_functions/count.h @@ -124,6 +124,6 @@ namespace sqlpp static_assert(is_expression_t>::value, "count() requires an expression as argument"); return {t}; } -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/aggregate_functions/max.h b/include/sqlpp11/aggregate_functions/max.h index 563faf25..16faaa47 100644 --- a/include/sqlpp11/aggregate_functions/max.h +++ b/include/sqlpp11/aggregate_functions/max.h @@ -100,6 +100,6 @@ namespace sqlpp static_assert(is_expression_t>::value, "max() requires an expression as argument"); return {t}; } -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/aggregate_functions/min.h b/include/sqlpp11/aggregate_functions/min.h index 5e7795bd..37604e03 100644 --- a/include/sqlpp11/aggregate_functions/min.h +++ b/include/sqlpp11/aggregate_functions/min.h @@ -100,6 +100,6 @@ namespace sqlpp static_assert(is_expression_t>::value, "min() requires an expression as argument"); return {t}; } -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/aggregate_functions/sum.h b/include/sqlpp11/aggregate_functions/sum.h index fe019144..b7a48c10 100644 --- a/include/sqlpp11/aggregate_functions/sum.h +++ b/include/sqlpp11/aggregate_functions/sum.h @@ -122,6 +122,6 @@ namespace sqlpp static_assert(is_numeric_t>::value, "sum() requires a numeric expression as argument"); return {t}; } -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/alias.h b/include/sqlpp11/alias.h index 7f2eb254..197862cf 100644 --- a/include/sqlpp11/alias.h +++ b/include/sqlpp11/alias.h @@ -70,6 +70,6 @@ namespace sqlpp return context; } }; -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/alias_operators.h b/include/sqlpp11/alias_operators.h index 28fec0c0..b5b40074 100644 --- a/include/sqlpp11/alias_operators.h +++ b/include/sqlpp11/alias_operators.h @@ -40,5 +40,5 @@ namespace sqlpp return {*static_cast(this)}; } }; -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/alias_provider.h b/include/sqlpp11/alias_provider.h index 168af8ca..b77a9e20 100644 --- a/include/sqlpp11/alias_provider.h +++ b/include/sqlpp11/alias_provider.h @@ -100,7 +100,7 @@ namespace sqlpp SQLPP_ALIAS_PROVIDER(z) SQLPP_ALIAS_PROVIDER(left) SQLPP_ALIAS_PROVIDER(right) - } -} + } // namespace alias +} // namespace sqlpp #endif diff --git a/include/sqlpp11/all_of.h b/include/sqlpp11/all_of.h index 47808d20..5de0a4fa 100644 --- a/include/sqlpp11/all_of.h +++ b/include/sqlpp11/all_of.h @@ -65,6 +65,6 @@ namespace sqlpp _serialize_check{}; } }; -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/any.h b/include/sqlpp11/any.h index d232b19e..d8e86d04 100644 --- a/include/sqlpp11/any.h +++ b/include/sqlpp11/any.h @@ -76,6 +76,6 @@ namespace sqlpp // FIXME: can we accept non-values like NULL here? return {t}; } -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/assignment.h b/include/sqlpp11/assignment.h index 37d8959d..529d20ae 100644 --- a/include/sqlpp11/assignment.h +++ b/include/sqlpp11/assignment.h @@ -77,6 +77,6 @@ namespace sqlpp return context; } }; -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/auto_alias.h b/include/sqlpp11/auto_alias.h index 43caeb4e..f54628c5 100644 --- a/include/sqlpp11/auto_alias.h +++ b/include/sqlpp11/auto_alias.h @@ -56,10 +56,10 @@ namespace sqlpp { using type = expression_alias_t; }; - } + } // namespace detail template using auto_alias_t = typename detail::auto_alias_impl::type; -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/bad_expression.h b/include/sqlpp11/bad_expression.h index 289d4f01..fa389420 100644 --- a/include/sqlpp11/bad_expression.h +++ b/include/sqlpp11/bad_expression.h @@ -53,6 +53,6 @@ namespace sqlpp static Context& _(const T&, Context&); }; -} +} // namespace sqlpp #endif diff --git a/include/sqlpp11/basic_expression_operators.h b/include/sqlpp11/basic_expression_operators.h index 9798dba3..f4665b73 100644 --- a/include/sqlpp11/basic_expression_operators.h +++ b/include/sqlpp11/basic_expression_operators.h @@ -82,7 +82,7 @@ namespace sqlpp { using type = Expr, wrap_operand_t>; }; - } + } // namespace detail template