clang-tidy readbility fixes

This commit is contained in:
rbock
2017-09-10 15:46:54 +02:00
parent 0d6c63ce20
commit d112d714b9
3 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ namespace sqlpp
using _value_t = ::sqlpp::chrono::day_point;
day_point_operand() : _t{}
day_point_operand()
{
}

View File

@@ -45,7 +45,7 @@ namespace sqlpp
using _value_t = std::string;
text_operand() : _t{}
text_operand()
{
}

View File

@@ -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 << ' ';
}