I know the FooResult
itself is constructed directly in the return value memory location. I suspect this is really just a case of typical move construction, but are there any guarantees about its members being moved?
struct FooResult {
MoveConstructibleType x;
};
FooResult foo()
{
MoveConstructibleType x;
// do some stuff computing x...
return FooResult {.x = x}; // is the construction of x guaranteed to be move constructed?
}
I know the FooResult
itself is constructed directly in the return value memory location. I suspect this is really just a case of typical move construction, but are there any guarantees about its members being moved?
struct FooResult {
MoveConstructibleType x;
};
FooResult foo()
{
MoveConstructibleType x;
// do some stuff computing x...
return FooResult {.x = x}; // is the construction of x guaranteed to be move constructed?
}
Share
Improve this question
asked yesterday
davdav
9367 silver badges24 bronze badges
8
|
Show 3 more comments
1 Answer
Reset to default 0Actually, the key thing to remember here is that named variables aren't implicitly moved - so while it looks like a typical move construction case, the compiler won't automatically move x into FooResult unless std::move(x)
is explicitly used. Otherwise, we fall back to copy semantics if a copy constructor exists.
x
;) – 463035818_is_not_an_ai Commented yesterdayx
to be moved fromx
? – 463035818_is_not_an_ai Commented yesterdayreturn var;
, notreturn SomeObject{ var };
– Jarod42 Commented yesterdayx
is copied here, you have to usereturn FooResult {.x = std::move(x)};
– Jarod42 Commented yesterday