aboutsummaryrefslogtreecommitdiff
path: root/clang-tidy/bugprone
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2019-09-23 12:07:10 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2019-09-23 12:07:10 +0000
commitee399fcf6466439f0446f6aa8b21aaa87111bca5 (patch)
tree582c70d5dfe4ff73e7b2b2c57d215340e93d3720 /clang-tidy/bugprone
parent2c3879a0ea8472ca0fccf47993526fc90c8733c7 (diff)
Removed an incorred namespace-end comment
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@372593 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clang-tidy/bugprone')
-rw-r--r--clang-tidy/bugprone/ArgumentCommentCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tidy/bugprone/ArgumentCommentCheck.cpp b/clang-tidy/bugprone/ArgumentCommentCheck.cpp
index fa1d2346..4da91d11 100644
--- a/clang-tidy/bugprone/ArgumentCommentCheck.cpp
+++ b/clang-tidy/bugprone/ArgumentCommentCheck.cpp
@@ -324,7 +324,7 @@ void ArgumentCommentCheck::checkCallArgs(ASTContext *Ctx,
<< FixItHint::CreateInsertion(Args[I]->getBeginLoc(), ArgComment);
}
}
-} // namespace bugprone
+}
void ArgumentCommentCheck::check(const MatchFinder::MatchResult &Result) {
const auto *E = Result.Nodes.getNodeAs<Expr>("expr");