diff options
| author | Masood Malekghassemi <atash@google.com> | 2016-07-25 13:08:48 -0700 |
|---|---|---|
| committer | Masood Malekghassemi <atash@google.com> | 2016-07-25 13:08:53 -0700 |
| commit | cdb0867493fd9b3b42d29ce3bbca75dbe6e278b9 (patch) | |
| tree | 0aee42787d302ff0e2e93e03b535833a2c54c2fd | |
| parent | 9316ae515e2f8f3f497fb4f1559910c1eef2433d (diff) | |
| download | rust-cdb0867493fd9b3b42d29ce3bbca75dbe6e278b9.tar.gz rust-cdb0867493fd9b3b42d29ce3bbca75dbe6e278b9.zip | |
Unpublicize inference relations
| -rw-r--r-- | src/librustc/infer/mod.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/librustc/infer/mod.rs b/src/librustc/infer/mod.rs index 2ea2978b294..4e0c5b58b64 100644 --- a/src/librustc/infer/mod.rs +++ b/src/librustc/infer/mod.rs @@ -48,18 +48,18 @@ use self::higher_ranked::HrMatchResult; use self::region_inference::{RegionVarBindings, RegionSnapshot}; use self::unify_key::ToType; -pub mod bivariate; -pub mod combine; -pub mod equate; +mod bivariate; +mod combine; +mod equate; pub mod error_reporting; -pub mod glb; +mod glb; mod higher_ranked; pub mod lattice; -pub mod lub; +mod lub; pub mod region_inference; pub mod resolve; mod freshen; -pub mod sub; +mod sub; pub mod type_variable; pub mod unify_key; |
