repl: update some static_asserts for 32-bit compiler build

This commit is contained in:
Brian Carroll 2022-02-07 00:41:40 +00:00
parent 5661d281c6
commit 8e370a32b6
4 changed files with 12 additions and 12 deletions

View file

@ -59,7 +59,7 @@ pub enum TagName {
Closure(Symbol),
}
static_assertions::assert_eq_size!([u8; 24], TagName);
static_assertions::assert_eq_size!((usize, usize, u64), TagName);
impl TagName {
pub fn as_ident_str(&self, interns: &Interns, home: ModuleId) -> IdentStr {