I would put the std::move in there for there to be a move, because otherwise there won't be. :)
An alternative is:
auto MakeBig = [&]()->BigClass {
BigClass big;
//prepare big somehow
return big; // must be a `move`, if not elided!
};
OtherClass foo(MakeBig(), maybe, other, params);
or, if you aren't faint of heart:
OtherClass foo([&]()->BigClass {
BigClass big;
//prepare big somehow
return big; // must be a `move`, if not elided!
}(), maybe, other, params);
where we wrap the creation of big up into a lambda, and then defer the creation. This doesn't always work, mind you.
An advantage of this pattern is that the move can be elided if foo takes its first argument by value, and taking by value is now the right way to do it for a move able class that OtherClass will be making a copy of anyhow. If it doesn't take its first argument by value, the temporary created for constructing foo can still be elided into, so only one move (between the temporary, and foo) will occur.
return identifer;andthrow identifier. – aschepler Feb 7 at 20:52