diff options
author | HampusM <hampus@hampusmat.com> | 2023-10-01 21:15:00 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-10-01 21:15:00 +0200 |
commit | af88321fc14a95b3613ec11a7f665db3c468c944 (patch) | |
tree | 723853d3788e559afa65c603a12b271e6872dd32 /macros/src/util/mod.rs | |
parent | 1fc0371867b02127a5da63f01f03d264b382b552 (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.rs | 1 |
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; |