comparison clang-tools-extra/clang-tidy/modernize/UseUncaughtExceptionsCheck.cpp @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 0572611fdcc8
children 1f2b6ac9f198
comparison
equal deleted inserted replaced
173:0572611fdcc8 207:2e18cbf3894f
7 //===----------------------------------------------------------------------===// 7 //===----------------------------------------------------------------------===//
8 8
9 #include "UseUncaughtExceptionsCheck.h" 9 #include "UseUncaughtExceptionsCheck.h"
10 #include "clang/AST/ASTContext.h" 10 #include "clang/AST/ASTContext.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h" 11 #include "clang/ASTMatchers/ASTMatchFinder.h"
12 #include "clang/Lex/Lexer.h"
12 13
13 using namespace clang::ast_matchers; 14 using namespace clang::ast_matchers;
14 15
15 namespace clang { 16 namespace clang {
16 namespace tidy { 17 namespace tidy {