mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-11 15:07:08 +00:00
fix unnessisary mut
This commit is contained in:
parent
8c3c75cab6
commit
cf2f504d77
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ macro_rules! get_line_num {
|
|||
let line = line!();
|
||||
let column = column!();
|
||||
let file_path = file!().to_string();
|
||||
let mut crate_path = env!("CARGO_MANIFEST_DIR").to_string();
|
||||
let crate_path = env!("CARGO_MANIFEST_DIR").to_string();
|
||||
|
||||
CodeLocation {
|
||||
crate_path,
|
||||
|
|
Loading…
Reference in a new issue