Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
schungx committed Sep 7, 2023
1 parent c3cdba5 commit 5128f90
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/eval/chaining.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@ static INDEXER_HASHES: OnceCell<(u64, u64)> = OnceCell::new();
#[inline(always)]
#[must_use]
fn hash_idx() -> (u64, u64) {
*INDEXER_HASHES
.get_or_init(|| {
(
calc_fn_hash(None, FN_IDX_GET, 2),
calc_fn_hash(None, FN_IDX_SET, 3),
)
})
.into()
*INDEXER_HASHES.get_or_init(|| {
(
calc_fn_hash(None, FN_IDX_GET, 2),
calc_fn_hash(None, FN_IDX_SET, 3),
)
.into()
})
}

/// Method of chaining.
Expand Down

0 comments on commit 5128f90

Please sign in to comment.