mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Minor cleanup thanks to clang-tidy
This commit is contained in:
parent
d112d714b9
commit
00d10b5365
@ -45,9 +45,7 @@ namespace sqlpp
|
||||
|
||||
using _value_t = ::sqlpp::chrono::day_point;
|
||||
|
||||
day_point_operand()
|
||||
{
|
||||
}
|
||||
day_point_operand() = default;
|
||||
|
||||
day_point_operand(_value_t t) : _t(t)
|
||||
{
|
||||
|
@ -45,9 +45,7 @@ namespace sqlpp
|
||||
|
||||
using _value_t = std::string;
|
||||
|
||||
text_operand()
|
||||
{
|
||||
}
|
||||
text_operand() = default;
|
||||
|
||||
text_operand(_value_t t) : _t(std::move(t))
|
||||
{
|
||||
|
@ -77,7 +77,7 @@ namespace sqlpp
|
||||
|
||||
inline auto verbatim(std::string s) -> verbatim_t<no_value_t>
|
||||
{
|
||||
return {s};
|
||||
return {std::move(s)};
|
||||
}
|
||||
} // namespace sqlpp
|
||||
|
||||
|
@ -90,7 +90,7 @@ namespace sqlpp
|
||||
|
||||
inline verbatim_table_t verbatim_table(std::string name)
|
||||
{
|
||||
return {name};
|
||||
return {std::move(name)};
|
||||
}
|
||||
} // namespace sqlpp
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user