diff options
author | Linus Groh <mail@linusgroh.de> | 2022-09-21 17:45:36 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-09-21 21:12:24 +0100 |
commit | 4270ede7c45ca276eae106f0c581c8908ef51fa7 (patch) | |
tree | 4d217e1f1babff71ff5c79989866cea33f9d1ef5 /Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h | |
parent | 6055b0e8500a1c09cf478f660cf88ff3fc3bb773 (diff) | |
download | serenity-4270ede7c45ca276eae106f0c581c8908ef51fa7.zip |
LibWeb: Remove WRAPPER_HACK() macro
We no longer access Bindings::FooWrapper anywhere for a Foo platform
object, so these can be removed :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h b/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h index 0f8c6b3c5f..433a50b1c0 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLHtmlElement.h @@ -30,5 +30,3 @@ namespace Web::DOM { template<> inline bool Node::fast_is<HTML::HTMLHtmlElement>() const { return is_html_html_element(); } } - -WRAPPER_HACK(HTMLHtmlElement, Web::HTML) |