From f04694a33d65316e666d3fc74b7473c2e841841e Mon Sep 17 00:00:00 2001 From: Alex Fischman Date: Tue, 15 Oct 2024 20:35:50 -0700 Subject: [PATCH] More sort name performance testing --- src/sort/i64.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sort/i64.rs b/src/sort/i64.rs index 46e60c36..9ee57c64 100644 --- a/src/sort/i64.rs +++ b/src/sort/i64.rs @@ -81,9 +81,9 @@ impl Sort for I64Sort { impl IntoSort for i64 { type Sort = I64Sort; - fn store(self, _sort: &Self::Sort) -> Option { + fn store(self, sort: &Self::Sort) -> Option { Some(Value { - tag: *I64_SORT_NAME, + tag: sort.name(), bits: self as u64, }) }