We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 544ed03 commit d4d1310Copy full SHA for d4d1310
src/librustc/back/manifest.rs
@@ -19,7 +19,7 @@ use driver::session::Session;
19
use std::path::Path;
20
21
#[cfg(not(windows))]
22
-pub fn postprocess_executable(sess: Session, filename: &Path) {}
+pub fn postprocess_executable(_sess: Session, _filename: &Path) {}
23
24
#[cfg(windows)]
25
pub fn postprocess_executable(sess: Session, filename: &Path) {
@@ -76,7 +76,7 @@ mod windows {
76
unsafe{ transmute(id) }
77
}
78
79
- pub fn embed_manifest(filename: &Path,
+ pub fn embed_manifest(filename: &Path,
80
manifest: &str) -> Result<(),~str> {
81
unsafe {
82
let hUpdate = as_utf16_p(filename.as_str().unwrap(), |path| {
0 commit comments