diff options
author | 2021-12-25 13:17:16 +0100 | |
---|---|---|
committer | 2021-12-25 13:17:16 +0100 | |
commit | c297b4ee8d619d903b1b1673e47a8df25637d01b (patch) | |
tree | 8845460c0caa37e4d60b60c09c0ca5a3fdcc5df4 /macros/src/codegen/local_resources.rs | |
parent | c78177c37e3192c7a41a3ea8e7c139751c1a8989 (diff) | |
download | rtic-c297b4ee8d619d903b1b1673e47a8df25637d01b.tar.gz rtic-c297b4ee8d619d903b1b1673e47a8df25637d01b.tar.zst rtic-c297b4ee8d619d903b1b1673e47a8df25637d01b.zip |
Clippy lints
Diffstat (limited to 'macros/src/codegen/local_resources.rs')
-rw-r--r-- | macros/src/codegen/local_resources.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/src/codegen/local_resources.rs b/macros/src/codegen/local_resources.rs index ff534862..50621c32 100644 --- a/macros/src/codegen/local_resources.rs +++ b/macros/src/codegen/local_resources.rs @@ -51,7 +51,7 @@ pub fn codegen( let expr = &task_local.expr; let attrs = &task_local.attrs; - let mangled_name = util::declared_static_local_resource_ident(resource_name, &task_name); + let mangled_name = util::declared_static_local_resource_ident(resource_name, task_name); // For future use // let doc = format!(" RTIC internal: {}:{}", file!(), line!()); |