We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018525e commit 2384dd9Copy full SHA for 2384dd9
src/librustc/middle/region.rs
@@ -1333,6 +1333,7 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for ScopeTree {
1333
let ScopeTree {
1334
root_body,
1335
root_parent,
1336
+ ref body_expr_count,
1337
ref parent_map,
1338
ref var_map,
1339
ref destruction_scopes,
@@ -1346,6 +1347,7 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for ScopeTree {
1346
1347
root_parent.hash_stable(hcx, hasher);
1348
});
1349
1350
+ body_expr_count.hash_stable(hcx, hasher);
1351
parent_map.hash_stable(hcx, hasher);
1352
var_map.hash_stable(hcx, hasher);
1353
destruction_scopes.hash_stable(hcx, hasher);
0 commit comments