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 6273b6d commit 6dfdf68Copy full SHA for 6dfdf68
clang-tools-extra/clang-tidy/llvmlibc/ImplementationInNamespaceCheck.cpp
@@ -31,7 +31,6 @@ void ImplementationInNamespaceCheck::check(
31
const MatchFinder::MatchResult &Result) {
32
const auto *MatchedDecl =
33
Result.Nodes.getNodeAs<Decl>("child_of_translation_unit");
34
- MatchedDecl->dump();
35
const auto *NS = dyn_cast<NamespaceDecl>(MatchedDecl);
36
if (NS == nullptr || NS->isAnonymousNamespace()) {
37
diag(MatchedDecl->getLocation(),
0 commit comments