From c367bcb5f898f05018b9c112409a6a3783157616 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 16 Jul 2022 09:41:37 -0400 Subject: [PATCH] LibJS: Remove accidentally duplicated [[RoundingType]] enumeration This is defined in NumberFormat's base class. --- Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h b/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h index 56caf70875..87921eef3e 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h +++ b/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h @@ -129,13 +129,6 @@ public: Accounting, }; - enum class RoundingType { - Invalid, - SignificantDigits, - FractionDigits, - CompactRounding, - }; - enum class Notation { Invalid, Standard,