mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:37:34 +00:00
Userland: Make bit-fields compatible with MSVC C++ ABI
This commit is contained in:
parent
00928764e9
commit
96d44b1572
5 changed files with 30 additions and 11 deletions
|
@ -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 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue