mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
AK: Zero-initialize the internal storage of Optional
This commit is contained in:
parent
0763f67043
commit
17846dd063
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ private:
|
|||
ASSERT(m_has_value);
|
||||
return *reinterpret_cast<const T*>(&m_storage);
|
||||
}
|
||||
char m_storage[sizeof(T)];
|
||||
u8 m_storage[sizeof(T)] { 0 };
|
||||
bool m_has_value { false };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue