Consider the following function.
std::string foo()
{
const std::string s = "hello";
return s;
}
clang-tidy
suggests to remove const
qualifier as is prevents an automatic move. Is this suggestion valid as there shouldn't be a move at all due to RVO?