mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
simple setNull
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
This commit is contained in:
parent
1ea4700bd6
commit
60b2ed52b0
@ -157,6 +157,8 @@
|
||||
<false/>
|
||||
<key>Replace</key>
|
||||
<data>SU1FSQ==</data>
|
||||
<key>Skip</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
</array>
|
||||
<key>Debug</key>
|
||||
|
@ -66,7 +66,8 @@ public:
|
||||
}
|
||||
constexpr bool operator != (const GUID& other) const { return ! (*this == other); }
|
||||
|
||||
void setNull() { *this = GUID(); }
|
||||
// void setNull() { *this = GUID(); }
|
||||
void setNull() {Data1 = 0; Data2 = 0; Data3 = 0; memset( (void*)&Data4[0], 0, 8);}
|
||||
constexpr bool isNull() const { return Data1 == 0 && Data2 == 0 && Data3 == 0 && Data4[0] == 0 && Data4[1] == 0 && Data4[2] == 0 && Data4[3] == 0 && Data4[4] == 0 && Data4[5] == 0 && Data4[6] == 0 && Data4[7] == 0; }
|
||||
constexpr bool notNull() const { return !isNull(); }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user