2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-01-31 20:22:07 +00:00

RVO instead rvalue test_future

This commit is contained in:
Oliver Kowalke
2015-12-21 14:51:31 +01:00
parent fe45bfd338
commit d09ab56a05

View File

@@ -74,7 +74,7 @@ int fn8( int i) {
A fn9() {
A a;
a.value = 3;
return std::move( a);
return a;
}
A fn10() {