Skip to content

Commit 0f8adc8

Browse files
committed
[OpenACC] Fix comments on OpenACC enum to use ///
1 parent 59569eb commit 0f8adc8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

clang/include/clang/Basic/OpenACCKinds.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -72,25 +72,25 @@ enum class OpenACCAtomicKind {
7272

7373
/// Represents the kind of an OpenACC clause.
7474
enum class OpenACCClauseKind {
75-
// 'finalize' clause, allowed on 'exit data' directive.
75+
/// 'finalize' clause, allowed on 'exit data' directive.
7676
Finalize,
77-
// 'if_present' clause, allowed on 'host_data' and 'update' directives.
77+
/// 'if_present' clause, allowed on 'host_data' and 'update' directives.
7878
IfPresent,
79-
// 'seq' clause, allowed on 'loop' and 'routine' directives.
79+
/// 'seq' clause, allowed on 'loop' and 'routine' directives.
8080
Seq,
81-
// 'independent' clause, allowed on 'loop' directives.
81+
/// 'independent' clause, allowed on 'loop' directives.
8282
Independent,
83-
// 'auto' clause, allowed on 'loop' directives.
83+
/// 'auto' clause, allowed on 'loop' directives.
8484
Auto,
85-
// 'worker' clause, allowed on 'loop' and 'routine' directives.
85+
/// 'worker' clause, allowed on 'loop' and 'routine' directives.
8686
Worker,
87-
// 'vector' clause, allowed on 'loop' and 'routine' directives. Takes no
88-
// arguments for 'routine', so the 'loop' version is not yet implemented
89-
// completely.
87+
/// 'vector' clause, allowed on 'loop' and 'routine' directives. Takes no
88+
/// arguments for 'routine', so the 'loop' version is not yet implemented
89+
/// completely.
9090
Vector,
91-
// 'nohost' clause, allowed on 'routine' directives.
91+
/// 'nohost' clause, allowed on 'routine' directives.
9292
NoHost,
93-
// Represents an invalid clause, for the purposes of parsing.
93+
/// Represents an invalid clause, for the purposes of parsing.
9494
Invalid,
9595
};
9696
} // namespace clang

0 commit comments

Comments
 (0)