Chromium Code Reviews| Index: Source/core/editing/EditCommand.h |
| diff --git a/Source/core/editing/EditCommand.h b/Source/core/editing/EditCommand.h |
| index dd89def179e98208e8f02f0b01484b7b1f17f675..8996357860c174f935d1aeaf3b780ff8dba2a172 100644 |
| --- a/Source/core/editing/EditCommand.h |
| +++ b/Source/core/editing/EditCommand.h |
| @@ -84,7 +84,7 @@ protected: |
| explicit SimpleEditCommand(Document& document) : EditCommand(document) { } |
| private: |
| - virtual bool isSimpleEditCommand() const override final { return true; } |
|
yosin_UTC9
2015/07/07 06:40:09
It is interesting that compiler allows to have bot
|
| + bool isSimpleEditCommand() const final { return true; } |
| }; |
| DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEditCommand(), command.isSimpleEditCommand()); |