From a31000a9a683c137befafcffe671931b6ae2d341 Mon Sep 17 00:00:00 2001 From: Joe Fioti Date: Thu, 25 Jul 2024 15:22:19 -0500 Subject: [PATCH] Clippy --- src/shape/symbolic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shape/symbolic.rs b/src/shape/symbolic.rs index 02f8b118..34804f4e 100644 --- a/src/shape/symbolic.rs +++ b/src/shape/symbolic.rs @@ -176,7 +176,7 @@ impl Expression { } /// Simplify the expression to its minimal terms, using a cache to retrieve / store the simplification - pub fn simplify_cache(self, cache: &mut FxHashMap) -> Self { + pub fn simplify_cache(self, cache: &mut FxHashMap) -> Self { if let Some(s) = cache.get(&self) { *s } else {