Possible Duplicate:
Why parameters of universal reference needs to be casted, before used?
I am writing library which wraps a lot of functions and methods from other library. To avoid coping of return values I am applying std::forward like so:
template<class T>
T&& wrapper(T&& t) {
f(t); // t passed as lvalue
return std::forward<T>(t);
}
f returns void and takes T&& (or overloaded on valueness). Wrapper always returns wrappers's param and on returned value should preserve valuness of argument. Do I actually need to use std::forward in return? Does RVO makes it superfluous? Does the fact that it is a reference (R or L) makes it superfluous? Is it needed if return is not last function statement (inside some if)?
POST CLOSURE EDIT
I do not understand how java, mono and js guys can vote to close C++ question if subject could not even be understood by majority of C++ programmer.
Question which mentioned as a duplicate not even close to being duplicate. "Duplicate" is about why Scott Meyers advised to blindly use std::forward with universal references and std::move with rvalue references.
This question is about something very different. It is about std::forward interaction with RVO, and lifetime of arg/return value temporaries.
If you think that this is valid question, do cast your reopen vote (link "reopen" below)
EDIT
It is debatable if wrapper() should return void or T&&, because caller have access to evaluated value via arg (which is reference, R or L). But in my case I need to return value so that wrapper() can be used in expressions.
It might be irrelevant to the question, but it is known that functions f does not steal from t, so 1st use of std::forward in f(std::forward<T>(t)) is superfluous and it was removed by me.
I've wrote small test: https://gist.github.com/3910503
Test shows, that returning unforwarded T- does creates extra copy in gcc48 and clang32 with -O3 (RVO does not kicks in).
Also, I was not able to get bad behavior from UB in:
auto&& tmp = wrapper(42);
It does not prove anything of cause because it is undefined behavior (if it is UB).
fsteals away its parameter then what's the point of the return value at all? – Luc Danton Oct 18 '12 at 6:43fwon't steal it parameter. I agree that it is debatable why to return fromwrapper, if return value is known (argument is reference). But I need to return, so thatwrappercan be used in function-style expressions. – Leonid Volnitsky Oct 18 '12 at 6:55&&a "universal reference" again... – Nicol Bolas Oct 18 '12 at 7:28