unit_tests: remove std::move in return statement

This actually prevents copy elision
release-v0.5.1
moneromooo-monero 6 years ago
parent 0dddfeacc9
commit 0c8d8f6b2e
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -825,7 +825,7 @@ TEST(Serialization, portability_outputs)
return {};
}
crypto::chacha8(ciphertext.data() + sizeof(iv), ciphertext.size() - prefix_size, key, iv, &plaintext[0]);
return std::move(plaintext);
return plaintext;
};
crypto::secret_key view_secret_key;
epee::string_tools::hex_to_pod("339673bb1187e2f73ba7841ab6841c5553f96e9f13f8fe6612e69318db4e9d0a", view_secret_key);

Loading…
Cancel
Save