From 691e1f88af705174a91804d7494f640a01757ea3 Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Fri, 4 Apr 2025 08:09:07 -0700 Subject: [PATCH] fnv: inline default All other small functions in this file are inlined. --- src/fnv.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fnv.rs b/src/fnv.rs index 1ef8efd..f1696a0 100644 --- a/src/fnv.rs +++ b/src/fnv.rs @@ -13,6 +13,7 @@ pub struct FnvHasher { } impl Default for FnvHasher { + #[inline] fn default() -> Self { Self { state: BASIS } }