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() {
65
65
// ===----------------------------------------------------------------------===//
66
66
// OpenACC clauses printing methods
67
67
// ===----------------------------------------------------------------------===//
68
- void OpenACCClausePrinter::VisitDefaultClause (
69
- const OpenACCDefaultClause &C) {
68
+ void OpenACCClausePrinter::VisitDefaultClause (const OpenACCDefaultClause &C) {
70
69
OS << " default(" << C.getDefaultClauseKind () << " )" ;
71
70
}
72
71
Original file line number Diff line number Diff line change @@ -2459,8 +2459,7 @@ class OpenACCClauseProfiler
2459
2459
}
2460
2460
2461
2461
#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);
2464
2463
2465
2464
#include " clang/Basic/OpenACCClauses.def"
2466
2465
};
@@ -2469,8 +2468,7 @@ class OpenACCClauseProfiler
2469
2468
void OpenACCClauseProfiler::VisitDefaultClause (
2470
2469
const OpenACCDefaultClause &Clause) {}
2471
2470
2472
- void OpenACCClauseProfiler::VisitIfClause (
2473
- const OpenACCIfClause &Clause) {
2471
+ void OpenACCClauseProfiler::VisitIfClause (const OpenACCIfClause &Clause) {
2474
2472
assert (Clause.hasConditionExpr () &&
2475
2473
" if clause requires a valid condition expr" );
2476
2474
Profiler.VisitStmt (Clause.getConditionExpr ());
You can’t perform that action at this time.
0 commit comments