1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

Userland: Switch static_assert of type sizes to AK::AssertSize

This commit is contained in:
Brian Gianforcaro 2021-09-05 01:00:46 -07:00 committed by Andreas Kling
parent 472454cded
commit 3e45c3ed90
5 changed files with 7 additions and 7 deletions

View file

@ -28,7 +28,7 @@ union MMX {
i16x4 v16u;
i32x2 v32u;
};
static_assert(sizeof(MMX) == sizeof(u64));
static_assert(AssertSize<MMX, sizeof(u64)>());
class SoftFPU final {
public: