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 b1a8ca5 commit 1c13b0eCopy full SHA for 1c13b0e
src/link.rs
@@ -1,6 +1,6 @@
1
use std::io::Cursor;
2
3
-use anyhow::{anyhow, Result};
+use anyhow::Result;
4
5
use crate::Library;
6
@@ -26,5 +26,5 @@ pub fn link_libraries(libraries: &[Library]) -> Result<Vec<u8>> {
26
))))?,
27
)?;
28
29
- return linker.encode().map_err(|e| anyhow!(e));
+ return linker.encode().map_err(|e| anyhow::anyhow!(e));
30
}
0 commit comments