mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Use clang-tidy to prevent else after return
This commit is contained in:
parent
6a9715b59d
commit
63b40527ee
@ -82,10 +82,8 @@ namespace sqlpp
|
||||
{
|
||||
return os << "NULL";
|
||||
}
|
||||
else
|
||||
{
|
||||
return os << e.value();
|
||||
}
|
||||
|
||||
return os << e.value();
|
||||
}
|
||||
} // namespace sqlpp
|
||||
#endif
|
||||
|
@ -71,17 +71,13 @@ namespace sqlpp
|
||||
{
|
||||
return t.is_null();
|
||||
}
|
||||
else
|
||||
|
||||
if (t.is_null())
|
||||
{
|
||||
if (t.is_null())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
return t._is_trivial();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
return t._is_trivial();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -57,10 +57,8 @@ namespace sqlpp
|
||||
}
|
||||
return retVal;
|
||||
}
|
||||
else
|
||||
{
|
||||
return arg;
|
||||
}
|
||||
|
||||
return arg;
|
||||
}
|
||||
|
||||
std::ostream& _os;
|
||||
|
Loading…
Reference in New Issue
Block a user