Skip to content
Snippets Groups Projects
Verified Commit dbb536b5 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: clippy issues

parent 8e21cfc5
No related branches found
No related tags found
No related merge requests found
Pipeline #2243 passed
...@@ -54,8 +54,8 @@ fn main() { ...@@ -54,8 +54,8 @@ fn main() {
.open(dest_path) .open(dest_path)
.unwrap_or_else(|_| panic!("Can't open '{}'", BUILD_OUT_FILE)); .unwrap_or_else(|_| panic!("Can't open '{}'", BUILD_OUT_FILE));
writeln!(file, "{}", "//! Global constants, such as compiler version used, features, platform information and others.\n").unwrap(); writeln!(file, "//! Global constants, such as compiler version used, features, platform information and others.\n").unwrap();
writeln!(file, "{}", "// @generated\n").unwrap(); writeln!(file, "// @generated\n").unwrap();
let now_utc = Utc::now(); let now_utc = Utc::now();
write_str_constant( write_str_constant(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment