mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-04 04:00:39 -06:00
clang-tidy readbility fixes
This commit is contained in:
@@ -45,7 +45,7 @@ namespace sqlpp
|
||||
|
||||
using _value_t = ::sqlpp::chrono::day_point;
|
||||
|
||||
day_point_operand() : _t{}
|
||||
day_point_operand()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace sqlpp
|
||||
|
||||
using _value_t = std::string;
|
||||
|
||||
text_operand() : _t{}
|
||||
text_operand()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -248,7 +248,7 @@ namespace sqlpp
|
||||
static Context& _(const T& t, Context& context)
|
||||
{
|
||||
interpret_tuple(t._flags, ' ', context);
|
||||
if (sizeof...(Flags))
|
||||
if (sizeof...(Flags) != 0u)
|
||||
{
|
||||
context << ' ';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user