Tidy up unneeded '&'s.

This commit is contained in:
Dan Gohman
2019-01-03 11:31:36 -08:00
parent c66a3c23f3
commit 529de7ca60
6 changed files with 9 additions and 9 deletions

View File

@@ -193,7 +193,7 @@ impl WastContext {
.collect::<Vec<_>>();
let index = self.get_index(&instance_name)?;
self.namespace
.invoke(&mut *self.compiler, index, &field, &value_args)
.invoke(&mut *self.compiler, index, field, &value_args)
.map_err(WastError::Action)
}