Skip to content

Commit a043aed

Browse files
fix: 可変性が不要な箇所のiter_mutをiterに変更 (#151)
1 parent 7f0dbc9 commit a043aed

File tree

1 file changed

+1
-1
lines changed
  • hooq-macros/src/impls/inert_attr

1 file changed

+1
-1
lines changed

hooq-macros/src/impls/inert_attr/parse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ pub fn extract_hooq_info_from_attrs(attrs: &mut Vec<Attribute>) -> syn::Result<I
157157
let mut is_skipped_all = false;
158158

159159
let mut keeps = Vec::with_capacity(attrs.len());
160-
for attr in attrs.iter_mut() {
160+
for attr in attrs.iter() {
161161
match &attr.meta {
162162
// flavor
163163
Meta::NameValue(MetaNameValue { path, value, .. }) if path == &hooq_flavor => {

0 commit comments

Comments
 (0)