Mercurial > hg > CbC > CbC_llvm
diff clang-tools-extra/clang-query/Query.h @ 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 |
line wrap: on
line diff
--- a/clang-tools-extra/clang-query/Query.h Mon May 25 11:55:54 2020 +0900 +++ b/clang-tools-extra/clang-query/Query.h Tue Jun 08 06:07:14 2021 +0900 @@ -18,7 +18,7 @@ namespace clang { namespace query { -enum OutputKind { OK_Diag, OK_Print, OK_DetailedAST }; +enum OutputKind { OK_Diag, OK_Print, OK_DetailedAST, OK_SrcLoc }; enum QueryKind { QK_Invalid, @@ -120,7 +120,7 @@ static const QueryKind value = QK_SetOutputKind; }; -template <> struct SetQueryKind<ast_type_traits::TraversalKind> { +template <> struct SetQueryKind<TraversalKind> { static const QueryKind value = QK_SetTraversalKind; }; @@ -149,6 +149,7 @@ QS.DiagOutput = false; QS.DetailedASTOutput = false; QS.PrintOutput = false; + QS.SrcLocOutput = false; QS.*Var = true; return true; }