Skip to content

Commit

Permalink
More sort name performance testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Fischman committed Oct 16, 2024
1 parent 09f3392 commit f04694a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sort/i64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ impl Sort for I64Sort {

impl IntoSort for i64 {
type Sort = I64Sort;
fn store(self, _sort: &Self::Sort) -> Option<Value> {
fn store(self, sort: &Self::Sort) -> Option<Value> {
Some(Value {
tag: *I64_SORT_NAME,
tag: sort.name(),
bits: self as u64,
})
}
Expand Down

0 comments on commit f04694a

Please sign in to comment.