about summary refs log tree commit diff
path: root/src/tools/clippy
blob: 3bda548f81bc268a2e9813ce9168d2e40e8a11bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
tree d4fcb78d1cff6387f727da9cdc8c6e7ca0019d99
parent 27b5dd8886ac0423e059c0817b55a4e618b344a0
parent c02367c4e95676833d88d7371568a081db67c836
author bors <bors@rust-lang.org> 1549183334 +0000
committer bors <bors@rust-lang.org> 1549183334 +0000

Auto merge of #3736 - mikerite:fix-build-20190203, r=phansch

Fix breakage due to rust-lang/rust#58079

The rustc change added HirId to a few nodes. As I understand it, the plan is
to remove the NodeId from these nodes eventually. Where the NodeId was
not being matched, I used `..` to try and avoid further breakage. Where it
was, I used `_` to make the fix easier when NodeId is removed.