diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-06 14:52:33 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-06 14:52:33 +0200 |
| commit | 32f75625830660468287de0f213baee760fc6384 (patch) | |
| tree | aaa8286ee13a4188d826d4efd59482c7b1aa0e73 /Private/CFKit/GUIDWrapper.hpp | |
| parent | 422b8029eba71b6fbb6b3dcb386b8e115bbd08ef (diff) | |
:boom: Breaking changes, disk API improvemenets and bringing support for
more drivers...
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/CFKit/GUIDWrapper.hpp')
| -rw-r--r-- | Private/CFKit/GUIDWrapper.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Private/CFKit/GUIDWrapper.hpp b/Private/CFKit/GUIDWrapper.hpp index 8a71c614..62bc6d73 100644 --- a/Private/CFKit/GUIDWrapper.hpp +++ b/Private/CFKit/GUIDWrapper.hpp @@ -23,10 +23,10 @@ union GUIDSequence { alignas(8) ULong u64[2]; struct { - alignas(8) UInt m_Ms1; - UShort m_Ms2; - UShort m_Ms3; - UChar m_Ms4[8]; + alignas(8) UInt fMs1; + UShort fMs2; + UShort fMs3; + UChar fMs4[8]; }; }; @@ -40,10 +40,10 @@ class GUID final { GUID(const GUID &) = default; public: - GUIDSequence &operator->() noexcept { return m_UUID; } - GUIDSequence &Leak() noexcept { return m_UUID; } + GUIDSequence &operator->() noexcept { return fUUID; } + GUIDSequence &Leak() noexcept { return fUUID; } private: - GUIDSequence m_UUID; + GUIDSequence fUUID; }; } // namespace NewOS::XRN |
