Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 762a869

Browse files
committed
Fix unused_parens warnings
Signed-off-by: Joseph Livesey <joseph.livesey@btp.works>
1 parent a30c69f commit 762a869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perf/intkey_workload/src/intkey_addresser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ impl IntKeyAddresser {
4040
let prefix = self.namespace.clone();
4141
let mut hasher = Sha512::new();
4242
hasher.input(name.as_bytes());
43-
(prefix + &hasher.result_str()[64..])
43+
prefix + &hasher.result_str()[64..]
4444
}
4545
}

0 commit comments

Comments
 (0)