upgrade: Rust 1.49.0 (#8955)

This commit is contained in:
Bartek Iwańczuk 2021-01-02 13:52:42 +01:00 committed by GitHub
parent 88855b5d95
commit 41a4a34aee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 13 deletions

View file

@ -334,7 +334,7 @@ mod internal {
impl PartialEq for Node {
fn eq(&self, other: &Self) -> bool {
self as *const _ == other as *const _
std::ptr::eq(self, other)
}
}