[clang][NFC] Add missing 'override's

This commit is contained in:
Logan Smith 2020-07-20 16:40:03 -07:00
parent bf66003a4f
commit fc24d1eadd
1 changed files with 2 additions and 2 deletions

View 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";
}
};