aboutsummaryrefslogtreecommitdiff
path: root/macros/src/util/mod.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-10-01 21:15:00 +0200
committerHampusM <hampus@hampusmat.com>2023-10-01 21:15:00 +0200
commitaf88321fc14a95b3613ec11a7f665db3c468c944 (patch)
tree723853d3788e559afa65c603a12b271e6872dd32 /macros/src/util/mod.rs
parent1fc0371867b02127a5da63f01f03d264b382b552 (diff)
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
Diffstat (limited to 'macros/src/util/mod.rs')
-rw-r--r--macros/src/util/mod.rs1
1 files changed, 1 insertions, 0 deletions
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;