From aa89ff50ea3737deff7a12fbf9284deea255287e Mon Sep 17 00:00:00 2001 From: xunilrj Date: Fri, 12 Dec 2025 16:34:31 -0300 Subject: [PATCH] fmt and clippy issues --- sway-core/src/ir_generation/function.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway-core/src/ir_generation/function.rs b/sway-core/src/ir_generation/function.rs index 27619a772d..b8f4075e0a 100644 --- a/sway-core/src/ir_generation/function.rs +++ b/sway-core/src/ir_generation/function.rs @@ -5531,7 +5531,7 @@ pub fn get_runtime_representation(ctx: &Context, t: Type) -> MemoryRepresentatio pub fn get_memory_id(ctx: &Context, t: Type) -> u64 { let r = get_runtime_representation(ctx, t); - + // Uncomment here to debug the runtime memory representation // eprintln!("Runtime Repr: {:?} {:?}", t.with_context(ctx), &r);