diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-07-16 09:41:37 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-07-18 08:51:07 +0100 |
commit | c367bcb5f898f05018b9c112409a6a3783157616 (patch) | |
tree | 48385692b6265203624c072ca90c0be60626acc1 /Userland/Libraries | |
parent | 66194831691ee2e36de47789ad6b3a3e343d20ae (diff) | |
download | serenity-c367bcb5f898f05018b9c112409a6a3783157616.zip |
LibJS: Remove accidentally duplicated [[RoundingType]] enumeration
This is defined in NumberFormat's base class.
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h | 7 |
1 files changed, 0 insertions, 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, |