diff options
author | adamrk <[email protected]> | 2020-09-02 21:55:05 +0100 |
---|---|---|
committer | adamrk <[email protected]> | 2020-09-02 21:55:05 +0100 |
commit | 5cd2c67c25e8f85625620f24d894973fcab41c8c (patch) | |
tree | 8d2b2cbec5b4cc0adb4bcf9821496a2ee17ec0ae | |
parent | 66658f1168321e1ba3e6aae3f0c038308f0771d7 (diff) |
Make unify private again
-rw-r--r-- | crates/hir_ty/src/infer.rs | 2 | ||||
-rw-r--r-- | crates/hir_ty/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir_ty/src/infer.rs b/crates/hir_ty/src/infer.rs index 2db05ae78..03b00b101 100644 --- a/crates/hir_ty/src/infer.rs +++ b/crates/hir_ty/src/infer.rs | |||
@@ -55,7 +55,7 @@ macro_rules! ty_app { | |||
55 | }; | 55 | }; |
56 | } | 56 | } |
57 | 57 | ||
58 | pub mod unify; | 58 | mod unify; |
59 | mod path; | 59 | mod path; |
60 | mod expr; | 60 | mod expr; |
61 | mod pat; | 61 | mod pat; |
diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs index 681f98bde..1e748476a 100644 --- a/crates/hir_ty/src/lib.rs +++ b/crates/hir_ty/src/lib.rs | |||
@@ -43,7 +43,7 @@ use crate::{ | |||
43 | }; | 43 | }; |
44 | 44 | ||
45 | pub use autoderef::autoderef; | 45 | pub use autoderef::autoderef; |
46 | pub use infer::{unify, InferTy, InferenceResult}; | 46 | pub use infer::{InferTy, InferenceResult}; |
47 | pub use lower::CallableDefId; | 47 | pub use lower::CallableDefId; |
48 | pub use lower::{ | 48 | pub use lower::{ |
49 | associated_type_shorthand_candidates, callable_item_sig, ImplTraitLoweringMode, TyDefId, | 49 | associated_type_shorthand_candidates, callable_item_sig, ImplTraitLoweringMode, TyDefId, |