LibJS: Add missing Intl.Locale initializer for plain boolean type

This commit is contained in:
Timothy Flynn 2021-09-02 18:23:10 -04:00 committed by Linus Groh
parent e6a2ab1202
commit 3abfe7f7db
Notes: sideshowbarker 2024-07-18 04:47:30 +09:00

View File

@ -53,7 +53,7 @@ private:
Optional<String> m_collation; // [[Collation]]
Optional<String> m_hour_cycle; // [[HourCycle]]
Optional<String> m_numbering_system; // [[NumberingSystem]]
bool m_numeric; // [[Numeric]]
bool m_numeric { false }; // [[Numeric]]
};
}