LibWeb: Fix -Wmismatched-tags warning from Clang

This commit is contained in:
Daniel Bertalan 2022-02-17 10:52:12 +01:00 committed by Linus Groh
parent 41765895a8
commit bf16349c5b
Notes: sideshowbarker 2024-07-17 18:38:39 +09:00

View file

@ -13,7 +13,8 @@ namespace Web::DOM {
// https://dom.spec.whatwg.org/#concept-event-listener
// NOTE: The spec calls this "event listener", and it's *importantly* not the same as "EventListener"
struct DOMEventListener : RefCounted<DOMEventListener> {
class DOMEventListener : RefCounted<DOMEventListener> {
public:
DOMEventListener();
~DOMEventListener();