We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb6b9a commit d027247Copy full SHA for d027247
clang-tools-extra/clang-tidy/readability/UseCppStyleCommentsCheck.cpp
@@ -184,4 +184,5 @@ void UseCppStyleCommentsCheck::registerPPCallbacks(
184
185
void UseCppStyleCommentsCheck::check(const MatchFinder::MatchResult &Result) {}
186
187
+UseCppStyleCommentsCheck::~UseCppStyleCommentsCheck() = default;
188
} // namespace clang::tidy::readability
clang-tools-extra/clang-tidy/readability/UseCppStyleCommentsCheck.h
@@ -20,6 +20,7 @@ namespace clang::tidy::readability {
20
class UseCppStyleCommentsCheck : public ClangTidyCheck {
21
public:
22
UseCppStyleCommentsCheck(StringRef Name, ClangTidyContext *Context);
23
+ ~UseCppStyleCommentsCheck() override;
24
25
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
26
return LangOpts.CPlusPlus;
0 commit comments