The pass-by-rvalue-reference tag has no wiki summary.
3
votes
8answers
174 views
Is return by value always const?
class C {};
void foo(C& c) {}
C bar() { return C(); }
int main()
{
foo( bar() ); //compilation error (GCC 4.1.2)
} //invalid initialization of non-const ...
1
vote
2answers
106 views
T&& in templated function and class
I've just stumbled upon that T&& in class and function means different things.
In function:
template<class T> void f(T&& t){}; // t is R or L-value
...
int i=0;
f(i); // t ...
3
votes
3answers
190 views
prevent pass-by-ref of temporary object
I have a class that 'remembers' a reference to some object (e.g. an integer variable). I can't have it reference a value that's destructed immediately, and I'm looking for a way to protect the users ...