Return value elision
suggest changeIf you return a prvalue expression from a function, and the prvalue expression has the same type as the function’s return type, then the copy from the prvalue temporary can be elided:
std::string func()
{
return std::string("foo");
}
Pretty much all compilers will elide the temporary construction in this case.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents