mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:47:45 +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
|
||||
// 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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue