From 471fb7bf14a3989fb5a38147e4410b214b6b18cc Mon Sep 17 00:00:00 2001 From: rbock Date: Sun, 31 Jul 2016 16:47:36 +0200 Subject: [PATCH] Fixed typo --- include/sqlpp11/where.h | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/include/sqlpp11/where.h b/include/sqlpp11/where.h index a2af5cf0..4d41f2b8 100644 --- a/include/sqlpp11/where.h +++ b/include/sqlpp11/where.h @@ -27,15 +27,15 @@ #ifndef SQLPP_WHERE_H #define SQLPP_WHERE_H -#include -#include -#include -#include #include #include #include -#include #include +#include +#include +#include +#include +#include namespace sqlpp { @@ -123,8 +123,7 @@ namespace sqlpp // workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269 template - _base_t(Args&&... args) - : where{std::forward(args)...} + _base_t(Args&&... args) : where{std::forward(args)...} { } @@ -186,8 +185,7 @@ namespace sqlpp // workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269 template - _base_t(Args&&... args) - : where{std::forward(args)...} + _base_t(Args&&... args) : where{std::forward(args)...} { } @@ -211,7 +209,7 @@ namespace sqlpp }; }; - SQLPP_PORTABLE_STATIC_ASSERT(assert_where_t, "calling where() or uncontionally() required"); + SQLPP_PORTABLE_STATIC_ASSERT(assert_where_t, "calling where() or unconditionally() required"); SQLPP_PORTABLE_STATIC_ASSERT(assert_where_not_cpp_bool_t, "where() argument has to be an sqlpp boolean expression. Please use " @@ -286,8 +284,7 @@ namespace sqlpp // workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173269 template - _base_t(Args&&... args) - : no_where{std::forward(args)...} + _base_t(Args&&... args) : no_where{std::forward(args)...} { }