diff options
author | Florian Diebold <[email protected]> | 2019-12-03 12:58:02 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-12-03 12:58:02 +0000 |
commit | 18f25acb89304b2eb0a822b7b49b5e66a439ada7 (patch) | |
tree | 70e3d0e36efa9568fb7f510f44bd65ff675122a2 /crates/ra_hir_ty | |
parent | a5a07bde049c59059bc4a68b16a49a174d22cf65 (diff) |
Make unify pub(crate)
Diffstat (limited to 'crates/ra_hir_ty')
-rw-r--r-- | crates/ra_hir_ty/src/infer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_ty/src/infer.rs b/crates/ra_hir_ty/src/infer.rs index 0889a6bf9..d16f1eb46 100644 --- a/crates/ra_hir_ty/src/infer.rs +++ b/crates/ra_hir_ty/src/infer.rs | |||
@@ -41,7 +41,7 @@ use super::{ | |||
41 | }; | 41 | }; |
42 | use crate::{db::HirDatabase, infer::diagnostics::InferenceDiagnostic}; | 42 | use crate::{db::HirDatabase, infer::diagnostics::InferenceDiagnostic}; |
43 | 43 | ||
44 | pub use unify::unify; | 44 | pub(crate) use unify::unify; |
45 | 45 | ||
46 | macro_rules! ty_app { | 46 | macro_rules! ty_app { |
47 | ($ctor:pat, $param:pat) => { | 47 | ($ctor:pat, $param:pat) => { |