From 7f0dc18d8510e0ee7737ce243d5dcc4e7d6aea19 Mon Sep 17 00:00:00 2001 From: evan-schott <53463459+evan-schott@users.noreply.github.com> Date: Tue, 3 Oct 2023 14:34:26 -0700 Subject: [PATCH] Update compiler/passes/src/function_inlining/function_inliner.rs Co-authored-by: d0cd Signed-off-by: evan-schott <53463459+evan-schott@users.noreply.github.com> --- compiler/passes/src/function_inlining/function_inliner.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler/passes/src/function_inlining/function_inliner.rs b/compiler/passes/src/function_inlining/function_inliner.rs index b371807a0e..e1e492dd4b 100644 --- a/compiler/passes/src/function_inlining/function_inliner.rs +++ b/compiler/passes/src/function_inlining/function_inliner.rs @@ -15,7 +15,6 @@ // along with the Leo library. If not, see . use crate::{Assigner, AssignmentRenamer, CallGraph}; -use indexmap::IndexMap; use leo_ast::{Function, NodeBuilder}; use leo_span::Symbol;