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 21d6a41 commit 375ebceCopy full SHA for 375ebce
clang-tools-extra/clang-tidy/readability/UseCppStyleCommentsCheck.cpp
@@ -18,10 +18,10 @@ namespace clang::tidy::readability {
18
class UseCppStyleCommentsCheck::CStyleCommentHandler : public CommentHandler {
19
public:
20
CStyleCommentHandler(UseCppStyleCommentsCheck &Check, bool ExcludeDoxygen)
21
- : Check(Check),
+ : Check(Check), ExcludeDoxygen(ExcludeDoxygen),
22
CStyleCommentMatch(
23
- "^[ \t]*/\\*+[ \t\r\n]*(.*[ \t\r\n]*)*[ \t\r\n]*\\*+/[ \t\r\n]*$"),
24
- ExcludeDoxygen(ExcludeDoxygen) {}
+ "^[ \t]*/\\*+[ \t\r\n]*(.*[ \t\r\n]*)*[ \t\r\n]*\\*+/[ \t\r\n]*$") {
+ }
25
26
void setExcludeDoxygen(bool Exclude) { ExcludeDoxygen = Exclude; }
27
0 commit comments