fix assertion about the size of `Type`

This commit is contained in:
Alex Waygood 2025-10-16 13:48:52 +01:00
parent 546c7e43c0
commit 79a1305bf7
1 changed files with 1 additions and 1 deletions

View File

@ -11785,7 +11785,7 @@ pub(super) fn determine_upper_bound<'db>(
// Make sure that the `Type` enum does not grow unexpectedly.
#[cfg(not(debug_assertions))]
#[cfg(target_pointer_width = "64")]
static_assertions::assert_eq_size!(Type, [u8; 16]);
static_assertions::assert_eq_size!(Type, [u8; 24]);
#[cfg(test)]
pub(crate) mod tests {