File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1094,7 +1094,7 @@ fn set_abseil_options_to_use_namespace(
1094
1094
options_path : & PathBuf ,
1095
1095
) -> io:: Result < ( ) > {
1096
1096
// Read the contents of options.h
1097
- let current_content = fs:: read_to_string ( & options_path) ?;
1097
+ let current_content = fs:: read_to_string ( options_path) ?;
1098
1098
1099
1099
// Create the expected content
1100
1100
let new_content = current_content
@@ -1113,7 +1113,7 @@ fn set_abseil_options_to_use_namespace(
1113
1113
1114
1114
// Only write if content actually changed
1115
1115
if current_content != new_content {
1116
- let mut file = fs:: File :: create ( & options_path) ?;
1116
+ let mut file = fs:: File :: create ( options_path) ?;
1117
1117
file. write_all ( new_content. as_bytes ( ) ) ?;
1118
1118
}
1119
1119
You can’t perform that action at this time.
0 commit comments