[clang][NFC] Add missing 'override's
authorLogan Smith <logan.r.smith0@gmail.com>
Mon, 20 Jul 2020 23:40:03 +0000 (16:40 -0700)
committerLogan Smith <logan.r.smith0@gmail.com>
Mon, 20 Jul 2020 23:43:24 +0000 (16:43 -0700)
clang/lib/Tooling/Refactoring/RefactoringActions.cpp

index 7ac723f67c0479bdf4e56b448d23639d63621fd0..bf98941f568b3871faa53e93ab66621b93f0378d 100644 (file)
@@ -18,8 +18,8 @@ namespace {
 
 class DeclNameOption final : public OptionalRefactoringOption<std::string> {
 public:
-  StringRef getName() const { return "name"; }
-  StringRef getDescription() const {
+  StringRef getName() const override { return "name"; }
+  StringRef getDescription() const override {
     return "Name of the extracted declaration";
   }
 };