rename needs_subst
to has_param
This commit is contained in:
parent
f04b8fe0af
commit
842419712a
18 changed files with 28 additions and 28 deletions
|
@ -42,7 +42,7 @@ declare_lint_pass!(EnumIntrinsicsNonEnums => [ENUM_INTRINSICS_NON_ENUMS]);
|
|||
/// Returns `true` if we know for sure that the given type is not an enum. Note that for cases where
|
||||
/// the type is generic, we can't be certain if it will be an enum so we have to assume that it is.
|
||||
fn is_non_enum(t: Ty<'_>) -> bool {
|
||||
!t.is_enum() && !t.needs_subst()
|
||||
!t.is_enum() && !t.has_param()
|
||||
}
|
||||
|
||||
fn enforce_mem_discriminant(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue