Skip to content

Commit d027247

Browse files
committed
added override
1 parent cdb6b9a commit d027247

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

clang-tools-extra/clang-tidy/readability/UseCppStyleCommentsCheck.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,5 @@ void UseCppStyleCommentsCheck::registerPPCallbacks(
184184

185185
void UseCppStyleCommentsCheck::check(const MatchFinder::MatchResult &Result) {}
186186

187+
UseCppStyleCommentsCheck::~UseCppStyleCommentsCheck() = default;
187188
} // namespace clang::tidy::readability

clang-tools-extra/clang-tidy/readability/UseCppStyleCommentsCheck.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ namespace clang::tidy::readability {
2020
class UseCppStyleCommentsCheck : public ClangTidyCheck {
2121
public:
2222
UseCppStyleCommentsCheck(StringRef Name, ClangTidyContext *Context);
23+
~UseCppStyleCommentsCheck() override;
2324

2425
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
2526
return LangOpts.CPlusPlus;

0 commit comments

Comments
 (0)