fix unnessisary mut

This commit is contained in:
Evan Almloff 2022-06-28 12:48:38 -05:00
parent 8c3c75cab6
commit cf2f504d77

View file

@ -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,