File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ OpenACCClause::child_range OpenACCClause::children() {
6565// ===----------------------------------------------------------------------===//
6666// OpenACC clauses printing methods
6767// ===----------------------------------------------------------------------===//
68- void OpenACCClausePrinter::VisitDefaultClause (
69- const OpenACCDefaultClause &C) {
68+ void OpenACCClausePrinter::VisitDefaultClause (const OpenACCDefaultClause &C) {
7069 OS << " default(" << C.getDefaultClauseKind () << " )" ;
7170}
7271
Original file line number Diff line number Diff line change @@ -2459,8 +2459,7 @@ class OpenACCClauseProfiler
24592459 }
24602460
24612461#define VISIT_CLAUSE (CLAUSE_NAME ) \
2462- void Visit##CLAUSE_NAME##Clause( \
2463- const OpenACC##CLAUSE_NAME##Clause &Clause);
2462+ void Visit##CLAUSE_NAME##Clause(const OpenACC##CLAUSE_NAME##Clause &Clause);
24642463
24652464#include " clang/Basic/OpenACCClauses.def"
24662465};
@@ -2469,8 +2468,7 @@ class OpenACCClauseProfiler
24692468void OpenACCClauseProfiler::VisitDefaultClause (
24702469 const OpenACCDefaultClause &Clause) {}
24712470
2472- void OpenACCClauseProfiler::VisitIfClause (
2473- const OpenACCIfClause &Clause) {
2471+ void OpenACCClauseProfiler::VisitIfClause (const OpenACCIfClause &Clause) {
24742472 assert (Clause.hasConditionExpr () &&
24752473 " if clause requires a valid condition expr" );
24762474 Profiler.VisitStmt (Clause.getConditionExpr ());
You can’t perform that action at this time.
0 commit comments