diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-07 11:20:15 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-07 11:20:15 +0100 |
commit | 330c3fcb598bb626a2c8673e4c29daaa19e1bedc (patch) | |
tree | 95e216faeed8637a923ebb5bb144e047128cf5cf /Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h | |
parent | 10420dee7e48c818a7b1c5386b8fcebc587825f0 (diff) | |
download | serenity-330c3fcb598bb626a2c8673e4c29daaa19e1bedc.zip |
LibWeb: Use move semantics for QualifiedName more often
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h b/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h index 3e34c52f6c..aa6bf3f602 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h @@ -34,7 +34,7 @@ class HTMLHtmlElement final : public HTMLElement { public: using WrapperType = Bindings::HTMLHtmlElementWrapper; - HTMLHtmlElement(DOM::Document&, const QualifiedName& qualified_name); + HTMLHtmlElement(DOM::Document&, QualifiedName); virtual ~HTMLHtmlElement() override; }; |