| Index: Source/core/dom/EmptyNodeList.h
|
| diff --git a/Source/core/dom/EmptyNodeList.h b/Source/core/dom/EmptyNodeList.h
|
| index 4799bd60b695a7890bc38ee4e352d2ee28e8c6d7..4fbfc6585b9fd82d945d10cebb249236ebe8665d 100644
|
| --- a/Source/core/dom/EmptyNodeList.h
|
| +++ b/Source/core/dom/EmptyNodeList.h
|
| @@ -43,7 +43,7 @@ public:
|
| {
|
| return adoptRefWillBeNoop(new EmptyNodeList(rootNode));
|
| }
|
| - virtual ~EmptyNodeList();
|
| + ~EmptyNodeList() override;
|
|
|
| Node& ownerNode() const { return *m_owner; }
|
|
|
| @@ -52,11 +52,11 @@ public:
|
| private:
|
| explicit EmptyNodeList(Node& rootNode) : m_owner(rootNode) { }
|
|
|
| - virtual unsigned length() const override { return 0; }
|
| - virtual Node* item(unsigned) const override { return 0; }
|
| + unsigned length() const override { return 0; }
|
| + Node* item(unsigned) const override { return 0; }
|
|
|
| - virtual bool isEmptyNodeList() const override { return true; }
|
| - virtual Node* virtualOwnerNode() const override;
|
| + bool isEmptyNodeList() const override { return true; }
|
| + Node* virtualOwnerNode() const override;
|
|
|
| RefPtrWillBeMember<Node> m_owner;
|
| };
|
|
|