| //===--- DontModifyStdNamespaceCheck.cpp - clang-tidy----------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| #include "DontModifyStdNamespaceCheck.h" |
| #include "clang/AST/ASTContext.h" |
| #include "clang/ASTMatchers/ASTMatchFinder.h" |
| using namespace clang::ast_matchers; |
| void DontModifyStdNamespaceCheck::registerMatchers(MatchFinder *Finder) { |
| if (!getLangOpts().CPlusPlus) |
| namespaceDecl(unless(isExpansionInSystemHeader()), |
| anyOf(hasName("std"), hasName("posix")), |
| functionDecl(isExplicitTemplateSpecialization()), |
| cxxRecordDecl(isExplicitTemplateSpecialization())))))) |
| void DontModifyStdNamespaceCheck::check( |
| const MatchFinder::MatchResult &Result) { |
| const auto *N = Result.Nodes.getNodeAs<NamespaceDecl>("nmspc"); |
| // Only consider top level namespaces. |
| if (N->getParent() != Result.Context->getTranslationUnitDecl()) |
| "modification of %0 namespace can result in undefined behavior") |