Skip to content

Commit e4ae9ef

Browse files
committed
Rustup to rustc 1.51.0-nightly (d4e3570db 2021-02-01)
1 parent d1df92e commit e4ae9ef

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

build_sysroot/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2021-01-30
1+
nightly-2021-02-02

src/archive.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ pub(crate) struct ArArchiveBuilder<'a> {
3030
// Don't use `HashMap` here, as the order is important. `rust.metadata.bin` must always be at
3131
// the end of an archive for linkers to not get confused.
3232
entries: Vec<(String, ArchiveEntry)>,
33-
update_symbols: bool,
3433
}
3534

3635
impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
@@ -69,7 +68,6 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
6968

7069
src_archives,
7170
entries,
72-
update_symbols: false,
7371
}
7472
}
7573

@@ -136,9 +134,7 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
136134
})
137135
}
138136

139-
fn update_symbols(&mut self) {
140-
self.update_symbols = true;
141-
}
137+
fn update_symbols(&mut self) {}
142138

143139
fn build(mut self) {
144140
enum BuilderKind {

0 commit comments

Comments
 (0)