mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-27 10:00:24 +00:00
LibWeb: Fix -Wmismatched-tags warning from Clang
This commit is contained in:
parent
41765895a8
commit
bf16349c5b
Notes:
sideshowbarker
2024-07-17 18:38:39 +09:00
Author: https://github.com/BertalanD Commit: https://github.com/SerenityOS/serenity/commit/bf16349c5b Pull-request: https://github.com/SerenityOS/serenity/pull/12597
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…
Reference in a new issue