0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Fixed a few superflous semicolons

This commit is contained in:
rbock 2015-02-09 18:39:03 +01:00
parent 7e36281e5d
commit f50500ba8b
3 changed files with 3 additions and 3 deletions

View File

@ -211,7 +211,7 @@ namespace sqlpp
static_assert(not detail::has_duplicates<Expressions...>::value, "at least one duplicate argument detected in group_by()");
return { static_cast<const derived_statement_t<Policies>&>(*this), group_by_data_t<Database, Expressions...>{expressions...} };
};
}
};
};

View File

@ -211,7 +211,7 @@ namespace sqlpp
static_assert(not detail::has_duplicates<Expressions...>::value, "at least one duplicate argument detected in order_by()");
return { static_cast<const derived_statement_t<Policies>&>(*this), order_by_data_t<Database, Expressions...>{expressions...} };
};
}
};
};

View File

@ -190,7 +190,7 @@ namespace sqlpp
static void _()
{
static_assert(wrong_t<T>::value, "where expression required, e.g. where(true)");
};
}
};
// NO WHERE YET