1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +00:00

LibJS: Explicitly initialize primitive IndexedPropertyIterator members

This commit is contained in:
Andreas Kling 2022-02-05 18:01:12 +01:00
parent 0d60cf211d
commit 2518f2045e

View file

@ -107,8 +107,8 @@ private:
const IndexedProperties& m_indexed_properties; const IndexedProperties& m_indexed_properties;
Vector<u32> m_cached_indices; Vector<u32> m_cached_indices;
u32 m_index; u32 m_index { 0 };
bool m_skip_empty; bool m_skip_empty { false };
}; };
class IndexedProperties { class IndexedProperties {