diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-05-11 16:10:47 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2017-05-13 17:43:32 +0300 |
| commit | ea1c6df81eecad62ca25191042b7871291162933 (patch) | |
| tree | 1b15aa95ddebd7d614f822d570757103f5420795 /src/librustc_const_eval | |
| parent | da8b6e276e6894c3926610c1350e0d62ca83fdc7 (diff) | |
| download | rust-ea1c6df81eecad62ca25191042b7871291162933.tar.gz rust-ea1c6df81eecad62ca25191042b7871291162933.zip | |
rustc: stop interning CodeExtent, it's small enough.
Diffstat (limited to 'src/librustc_const_eval')
| -rw-r--r-- | src/librustc_const_eval/check_match.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_const_eval/check_match.rs b/src/librustc_const_eval/check_match.rs index a3dab6a938d..a18f91a9ee3 100644 --- a/src/librustc_const_eval/check_match.rs +++ b/src/librustc_const_eval/check_match.rs @@ -70,7 +70,7 @@ struct MatchVisitor<'a, 'tcx: 'a> { tcx: TyCtxt<'a, 'tcx, 'tcx>, tables: &'a ty::TypeckTables<'tcx>, param_env: &'a ty::ParameterEnvironment<'tcx>, - region_maps: &'a RegionMaps<'tcx>, + region_maps: &'a RegionMaps, } impl<'a, 'tcx> Visitor<'tcx> for MatchVisitor<'a, 'tcx> { |
