From f817fff977152f365a4ef84857ed458c94723324 Mon Sep 17 00:00:00 2001 From: Tom Kaitchuck Date: Mon, 19 Feb 2024 16:31:21 -0800 Subject: [PATCH] Suppress unused warning Signed-off-by: Tom Kaitchuck --- src/operations.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/operations.rs b/src/operations.rs index 008624a..1970cbf 100644 --- a/src/operations.rs +++ b/src/operations.rs @@ -1,4 +1,5 @@ use crate::convert::*; +#[allow(unused)] use zerocopy::transmute; ///This constant comes from Kunth's prng (Empirically it works better than those from splitmix32).