diff options
| author | varkor <github@varkor.com> | 2018-06-14 12:08:58 +0100 |
|---|---|---|
| committer | varkor <github@varkor.com> | 2018-06-20 12:23:46 +0100 |
| commit | c5f16e0e180f4f76187e55aecb5913a1cf7fab2a (patch) | |
| tree | 457abe3be0f8a865223cfd1fca80ec5997119824 /src/libsyntax/util/node_count.rs | |
| parent | 991efa4284c6ee01c36ab24a14b1c7779b92e17e (diff) | |
| download | rust-c5f16e0e180f4f76187e55aecb5913a1cf7fab2a.tar.gz rust-c5f16e0e180f4f76187e55aecb5913a1cf7fab2a.zip | |
Rename ParamBound(s) to GenericBound(s)
Diffstat (limited to 'src/libsyntax/util/node_count.rs')
| -rw-r--r-- | src/libsyntax/util/node_count.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/util/node_count.rs b/src/libsyntax/util/node_count.rs index 2d92f4b9531..ebb3081c1fd 100644 --- a/src/libsyntax/util/node_count.rs +++ b/src/libsyntax/util/node_count.rs @@ -95,7 +95,7 @@ impl<'ast> Visitor<'ast> for NodeCounter { self.count += 1; walk_trait_ref(self, t) } - fn visit_param_bound(&mut self, bounds: &ParamBound) { + fn visit_param_bound(&mut self, bounds: &GenericBound) { self.count += 1; walk_param_bound(self, bounds) } |
