mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:47:35 +00:00
LibWeb: Fix -Wmismatched-tags warning from Clang
This commit is contained in:
parent
41765895a8
commit
bf16349c5b
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ namespace Web::DOM {
|
||||||
|
|
||||||
// https://dom.spec.whatwg.org/#concept-event-listener
|
// https://dom.spec.whatwg.org/#concept-event-listener
|
||||||
// NOTE: The spec calls this "event listener", and it's *importantly* not the same as "EventListener"
|
// 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();
|
||||||
~DOMEventListener();
|
~DOMEventListener();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue