Upgrade Rust toolchain to 1.84.0 (#15408)

This commit is contained in:
Micha Reiser 2025-01-11 09:51:58 +01:00 committed by GitHub
parent 2d82445794
commit c39ca8fe6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 36 additions and 45 deletions

View file

@ -497,12 +497,7 @@ impl<'a> Printer<'a> {
dest: self.state.buffer.text_len(),
};
if self
.state
.source_markers
.last()
.map_or(true, |last| last != &marker)
{
if self.state.source_markers.last() != Some(&marker) {
self.state.source_markers.push(marker);
}
}