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/DOM/CDATASection.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/DOM/CDATASection.h')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/CDATASection.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/CDATASection.h b/Userland/Libraries/LibWeb/DOM/CDATASection.h index a5b18c0cc0..54c7a9047d 100644 --- a/Userland/Libraries/LibWeb/DOM/CDATASection.h +++ b/Userland/Libraries/LibWeb/DOM/CDATASection.h @@ -28,5 +28,3 @@ template<> inline bool Node::fast_is<CDATASection>() const { return is_cdata_section(); } } - -WRAPPER_HACK(CDATASection, Web::DOM) |