From 3abfe7f7dbff2ecf4be6e28d9782807f7182b774 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 2 Sep 2021 18:23:10 -0400 Subject: [PATCH] LibJS: Add missing Intl.Locale initializer for plain boolean type --- Userland/Libraries/LibJS/Runtime/Intl/Locale.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]] }; }