diff --git a/Userland/Libraries/LibJS/Runtime/Intl/Locale.h b/Userland/Libraries/LibJS/Runtime/Intl/Locale.h index eeab41b5ae..1c2cc646b2 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/Locale.h +++ b/Userland/Libraries/LibJS/Runtime/Intl/Locale.h @@ -53,7 +53,7 @@ private: Optional m_collation; // [[Collation]] Optional m_hour_cycle; // [[HourCycle]] Optional m_numbering_system; // [[NumberingSystem]] - bool m_numeric; // [[Numeric]] + bool m_numeric { false }; // [[Numeric]] }; }