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

Userland: Make bit-fields compatible with MSVC C++ ABI

This commit is contained in:
Dan Klishch 2023-11-03 23:59:15 -04:00 committed by Andrew Kaster
parent 00928764e9
commit 96d44b1572
5 changed files with 30 additions and 11 deletions

View file

@ -607,8 +607,10 @@ private:
u8 m_mod : 2 { 0 };
u8 m_reg : 4 { 0 };
u8 : 2;
u8 m_rm : 4 { 0 };
u8 m_sib_scale : 2 { 0 };
u8 : 2;
u8 m_sib_index : 4 { 0 };
u8 m_sib_base : 4 { 0 };
u8 m_displacement_bytes { 0 };