LibWeb: Mark URLSearchParams::to_string() as const

This commit is contained in:
Kenneth Myhra 2022-07-15 22:58:30 +02:00 committed by Linus Groh
commit 1b9f5fa28a
Notes: sideshowbarker 2024-07-17 09:56:35 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public:
void sort();
String to_string();
String to_string() const;
using ForEachCallback = Function<JS::ThrowCompletionOr<void>(String const&, String const&)>;
JS::ThrowCompletionOr<void> for_each(ForEachCallback);