From af88321fc14a95b3613ec11a7f665db3c468c944 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 1 Oct 2023 21:15:00 +0200 Subject: refactor: remove impossible unwrap in injectable macro This unwrap couldn't possibly be Err and can be removed by creating method call expressions by hand --- macros/src/util/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'macros/src/util/mod.rs') diff --git a/macros/src/util/mod.rs b/macros/src/util/mod.rs index 2244229..7ab2185 100644 --- a/macros/src/util/mod.rs +++ b/macros/src/util/mod.rs @@ -2,6 +2,7 @@ pub mod error; pub mod item_impl; pub mod iterator_ext; pub mod string; +pub mod syn_ext; pub mod syn_path; pub mod tokens; -- cgit v1.2.3-18-g5258