diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Intl/DisplayNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Intl/DisplayNames.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/DisplayNames.h b/Userland/Libraries/LibJS/Runtime/Intl/DisplayNames.h index f62386fc29..23be399f5a 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/DisplayNames.h +++ b/Userland/Libraries/LibJS/Runtime/Intl/DisplayNames.h @@ -70,7 +70,7 @@ private: Optional<LanguageDisplay> m_language_display {}; // [[LanguageDisplay]] }; -ThrowCompletionOr<Value> canonical_code_for_display_names(GlobalObject& global_object, DisplayNames::Type type, StringView code); +ThrowCompletionOr<Value> canonical_code_for_display_names(VM&, DisplayNames::Type, StringView code); bool is_valid_date_time_field_code(StringView field); } |