From 1d0de9e9d78179a4e709659995ae3b8de8d6e328 Mon Sep 17 00:00:00 2001 From: Maxim Vezenov Date: Tue, 16 Jul 2024 20:23:15 +0000 Subject: [PATCH] remove dbg on find_func_by_name --- compiler/noirc_frontend/src/hir/def_map/module_data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/noirc_frontend/src/hir/def_map/module_data.rs b/compiler/noirc_frontend/src/hir/def_map/module_data.rs index 62ece65c6de..488ccc476d7 100644 --- a/compiler/noirc_frontend/src/hir/def_map/module_data.rs +++ b/compiler/noirc_frontend/src/hir/def_map/module_data.rs @@ -108,7 +108,7 @@ impl ModuleData { } pub fn find_func_with_name(&self, name: &Ident) -> Option { - dbg!(&self.scope).find_func_with_name(name) + self.scope.find_func_with_name(name) } pub fn import(