]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_ast_passes/src/node_count.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / compiler / rustc_ast_passes / src / node_count.rs
index a4a48cc8e8a7f1d279cadb2dc2daf4953865134f..48b79809c1b97b0711aa34043902dfff7f239fa6 100644 (file)
@@ -76,7 +76,7 @@ impl<'ast> Visitor<'ast> for NodeCounter {
         self.count += 1;
         walk_trait_ref(self, t)
     }
-    fn visit_param_bound(&mut self, bounds: &GenericBound) {
+    fn visit_param_bound(&mut self, bounds: &GenericBound, _ctxt: BoundKind) {
         self.count += 1;
         walk_param_bound(self, bounds)
     }