diff options
| author | Michael Goulet <michael@errs.io> | 2022-12-24 21:36:07 +0000 | 
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2022-12-28 04:18:37 +0000 | 
| commit | c7b414adb67d01037f43cf81477428c36836203c (patch) | |
| tree | 8a5277308aa3a6d72d4eb76fad46eae8e76b79eb /compiler/rustc_hir_analysis/src/check/mod.rs | |
| parent | 91613c5030320d21e566d2075c4f6abda7d97321 (diff) | |
| download | rust-c7b414adb67d01037f43cf81477428c36836203c.tar.gz rust-c7b414adb67d01037f43cf81477428c36836203c.zip  | |
Rename module compare_method -> compare_impl_item
Diffstat (limited to 'compiler/rustc_hir_analysis/src/check/mod.rs')
| -rw-r--r-- | compiler/rustc_hir_analysis/src/check/mod.rs | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_hir_analysis/src/check/mod.rs b/compiler/rustc_hir_analysis/src/check/mod.rs index 86e60a1ed93..e3da4b7fcdb 100644 --- a/compiler/rustc_hir_analysis/src/check/mod.rs +++ b/compiler/rustc_hir_analysis/src/check/mod.rs @@ -63,7 +63,7 @@ a type parameter). */ mod check; -mod compare_method; +mod compare_impl_item; pub mod dropck; pub mod intrinsic; pub mod intrinsicck; @@ -94,7 +94,7 @@ use std::num::NonZeroU32; use crate::require_c_abi_if_c_variadic; use crate::util::common::indenter; -use self::compare_method::collect_trait_impl_trait_tys; +use self::compare_impl_item::collect_trait_impl_trait_tys; use self::region::region_scope_tree; pub fn provide(providers: &mut Providers) { @@ -104,7 +104,7 @@ pub fn provide(providers: &mut Providers) { check_mod_item_types, region_scope_tree, collect_trait_impl_trait_tys, - compare_impl_const: compare_method::compare_impl_const_raw, + compare_impl_const: compare_impl_item::compare_impl_const_raw, ..*providers }; }  | 
