diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/Document.h')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/Document.h b/Userland/Libraries/LibWeb/DOM/Document.h index 1b67116601..529a236e8f 100644 --- a/Userland/Libraries/LibWeb/DOM/Document.h +++ b/Userland/Libraries/LibWeb/DOM/Document.h @@ -56,7 +56,7 @@ public: virtual ~Document() override; String cookie(Cookie::Source = Cookie::Source::NonHttp); - void set_cookie(String, Cookie::Source = Cookie::Source::NonHttp); + void set_cookie(String const&, Cookie::Source = Cookie::Source::NonHttp); String referrer() const; |