Remove allow(unused)

This commit is contained in:
Edwin Cheng 2020-04-10 02:06:14 +08:00
parent 460ddde176
commit 197039b9fe

View File

@ -91,8 +91,7 @@ fn load_library(file: &Path) -> Result<Library, libloading::Error> {
struct ProcMacroLibraryLibloading {
// Hold the dylib to prevent it for unloadeding
#[allow(dead_code)]
lib: Library,
_lib: Library,
exported_macros: Vec<bridge::client::ProcMacro>,
}
@ -110,7 +109,7 @@ fn open(file: &Path) -> Result<Self, String> {
macros.to_vec()
};
Ok(ProcMacroLibraryLibloading { lib, exported_macros })
Ok(ProcMacroLibraryLibloading { _lib: lib, exported_macros })
}
}