RVO or automatic move

212 Views Asked by At

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?

0

There are 0 best solutions below