Clean up unneeded '&'s.

This commit is contained in:
Dan Gohman
2017-09-21 14:50:28 -07:00
parent 8deca67968
commit 14d6d1117d
3 changed files with 4 additions and 4 deletions

View File

@@ -136,7 +136,7 @@ fn worker_thread(
}
});
if let &Err(ref msg) = &result {
if let Err(ref msg) = result {
dbg!("FAIL: {}", msg);
}