Remove redundant clone in prepare_function_args.

This commit is contained in:
Sergey Pepyakin 2018-02-06 13:49:11 +03:00
parent a415932b9d
commit 2c2cb72078
1 changed files with 0 additions and 1 deletions

View File

@ -1203,7 +1203,6 @@ fn prepare_function_args(
let mut args = signature
.params()
.iter()
.cloned()
.map(|_| caller_stack.pop())
.collect::<Vec<RuntimeValue>>();
args.reverse();