0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 04:47:18 +08:00

Removed a few stray semicolons

This commit is contained in:
rbock 2015-02-15 13:10:39 +01:00
parent 2c463b2b51
commit a09c79b234
3 changed files with 3 additions and 3 deletions

View File

@ -315,7 +315,7 @@ namespace sqlpp
static void _() static void _()
{ {
static_assert(wrong_t<T>::value, "insert values required, e.g. set(...) or default_values()"); static_assert(wrong_t<T>::value, "insert values required, e.g. set(...) or default_values()");
}; }
}; };
// NO INSERT COLUMNS/VALUES YET // NO INSERT COLUMNS/VALUES YET

View File

@ -147,7 +147,7 @@ namespace sqlpp
static void _() static void _()
{ {
static_assert(wrong_t<T>::value, "update assignments required, i.e. set(...)"); static_assert(wrong_t<T>::value, "update assignments required, i.e. set(...)");
}; }
}; };
struct no_update_list_t struct no_update_list_t

View File

@ -192,7 +192,7 @@ namespace sqlpp
static_assert(not detail::has_duplicates<Args...>::value, "at least one duplicate argument detected in using()"); static_assert(not detail::has_duplicates<Args...>::value, "at least one duplicate argument detected in using()");
return { static_cast<const derived_statement_t<Policies>&>(*this), using_data_t<Database, Args...>{args...} }; return { static_cast<const derived_statement_t<Policies>&>(*this), using_data_t<Database, Args...>{args...} };
}; }
}; };
}; };