address nit.

This commit is contained in:
Nguyen Dac Nam 2020-04-07 18:29:30 +07:00 committed by GitHub
parent bf1174c114
commit 935648ffa9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -291,7 +291,7 @@ std::pair<Node, bool> ShaderIR::GetComponentValue(ComponentType component_type,
is_signed};
}
case ComponentType::UINT: // range [0, (1 << component_size) - 1]
return {original_value, false};
return {std::move(original_value), false};
case ComponentType::FLOAT:
if (component_size == 16) {
return {Operation(OperationCode::HCastFloat, original_value), true};