Skip to content

Commit fc24d1e

Browse files
committed
[clang][NFC] Add missing 'override's
1 parent bf66003 commit fc24d1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Tooling/Refactoring/RefactoringActions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ namespace {
1818

1919
class DeclNameOption final : public OptionalRefactoringOption<std::string> {
2020
public:
21-
StringRef getName() const { return "name"; }
22-
StringRef getDescription() const {
21+
StringRef getName() const override { return "name"; }
22+
StringRef getDescription() const override {
2323
return "Name of the extracted declaration";
2424
}
2525
};

0 commit comments

Comments
 (0)