1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:28:13 +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

@ -37,7 +37,7 @@ public:
bool is_marked() const { return m_mark; }
void set_marked(bool b) { m_mark = b; }
enum class State {
enum class State : bool {
Live,
Dead,
};