1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:57:35 +00:00

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

View file

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