suppressed clang-tidy warning

This commit is contained in:
silverqx
2023-04-01 10:16:14 +02:00
parent 23a75a4fc8
commit 32f53b3ebf
+1 -1
View File
@@ -50,7 +50,7 @@ QStringList PostgresConnection::searchPath(const bool flushCache)
{
// Don't use the ternary operator here so the std::move() can apply
if (schema == QStringLiteral("$user"))
return username;
return username; // NOLINT(performance-no-automatic-move)
return std::move(schema);
})