From 57277f69ed766b5108513ad57e2cd8c8ed17af51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralph=20K=C3=BCpper?= Date: Wed, 2 Sep 2026 13:38:16 +0200 Subject: [PATCH] style: rustfmt after the #9510/#9512/#9514 batch --- crates/perry-codegen/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/perry-codegen/src/lib.rs b/crates/perry-codegen/src/lib.rs index 1dfa523537..8186dcb47f 100644 --- a/crates/perry-codegen/src/lib.rs +++ b/crates/perry-codegen/src/lib.rs @@ -8,6 +8,7 @@ pub mod block; pub(crate) mod boxed_vars; pub mod codegen; pub(crate) mod collectors; +pub(crate) mod concat_site_cache; #[cfg(feature = "llvm-inprocess")] pub(crate) mod dialect; pub(crate) mod eh_mode; @@ -25,7 +26,6 @@ pub(crate) mod lower_array_method; pub(crate) mod lower_call; pub(crate) mod lower_conditional; pub(crate) mod lower_string_concat; -pub(crate) mod concat_site_cache; pub(crate) mod lower_string_method; pub mod module; pub mod nanbox;