This commit is contained in:
Ayaz Hafiz 2022-08-29 12:51:19 -05:00
parent 22a4a4dfbc
commit c2a0b878d3
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -50,13 +50,13 @@ struct CacheMeta {
impl CacheMeta {
#[inline(always)]
fn to_criteria(&self) -> CacheCriteria {
fn to_criteria(self) -> CacheCriteria {
let CacheMeta {
has_recursive_structure,
} = self;
CacheCriteria {
has_naked_recursion_pointer: false,
has_recursive_structure: *has_recursive_structure,
has_recursive_structure,
}
}
}