Skip to content

Commit 9305c96

Browse files
committed
Drop unused
1 parent bf61466 commit 9305c96

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

openblas-build/src/check.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ impl MakeConf {
104104
/// - Global "T" symbols in the text (code) section of library using `nm -g` external command.
105105
#[derive(Debug, Clone)]
106106
pub struct LibInspect {
107-
path: PathBuf,
108107
pub libs: Vec<String>,
109108
pub symbols: Vec<String>,
110109
}
@@ -160,11 +159,7 @@ impl LibInspect {
160159
.collect();
161160
libs.sort();
162161

163-
Ok(LibInspect {
164-
path: path.into(),
165-
libs,
166-
symbols,
167-
})
162+
Ok(LibInspect { libs, symbols })
168163
}
169164

170165
pub fn has_cblas(&self) -> bool {

0 commit comments

Comments
 (0)