mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:07:34 +00:00
Userland: Switch static_assert of type sizes to AK::AssertSize
This commit is contained in:
parent
472454cded
commit
3e45c3ed90
5 changed files with 7 additions and 7 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue