We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac08dd commit 78ec52aCopy full SHA for 78ec52a
src/link.rs
@@ -26,5 +26,5 @@ pub fn link_libraries(libraries: &[Library]) -> Result<Vec<u8>> {
26
))))?,
27
)?;
28
29
- return linker.encode().map_err(|e| anyhow::anyhow!(e));
+ linker.encode().map_err(|e| anyhow::anyhow!(e))
30
}
src/prelink.rs
@@ -3,7 +3,7 @@
3
use std::{
4
collections::{HashMap, HashSet},
5
fs::{self},
6
- io::{self, Cursor},
+ io::Cursor,
7
ops::Deref,
8
path::{Path, PathBuf},
9
};
0 commit comments