Skip to content

Commit 31d61f1

Browse files
committed
rename implied_bounds module to bounds
1 parent c45307f commit 31d61f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/librustc/infer/outlives/env.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use infer::{GenericKind, InferCtxt};
1212
use infer::outlives::free_region_map::FreeRegionMap;
13-
use infer::outlives::implied_bounds::{self, OutlivesBound};
13+
use infer::outlives::bounds::{self, OutlivesBound};
1414
use ty::{self, Ty};
1515

1616
use syntax::ast;
@@ -50,7 +50,7 @@ impl<'a, 'gcx: 'tcx, 'tcx: 'a> OutlivesEnvironment<'tcx> {
5050
region_bound_pairs: vec![],
5151
};
5252

53-
env.add_outlives_bounds(None, implied_bounds::explicit_outlives_bounds(param_env));
53+
env.add_outlives_bounds(None, bounds::explicit_outlives_bounds(param_env));
5454

5555
env
5656
}

src/librustc/infer/outlives/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
1313
pub mod env;
1414
pub mod free_region_map;
15-
pub mod implied_bounds;
15+
pub mod bounds;
1616
mod obligations;

0 commit comments

Comments
 (0)