Call cargo fmt --all

This commit is contained in:
Oskar Hahn 2024-04-01 12:52:56 +02:00
parent aec618d5fc
commit 62e30fd7d0
No known key found for this signature in database
GPG Key ID: E72581B1FE9F104C

View File

@ -982,9 +982,7 @@ fn link_linux(
// TODO: find a way to avoid using a vec! here - should theoretically be
// able to do this somehow using &[] but the borrow checker isn't having it.
// Also find a way to have these be string slices instead of Strings.
vec![
"-shared".to_string(),
],
vec!["-shared".to_string()],
output_path,
)
}