summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerichkeane <ekeane@nvidia.com>2024-01-05 06:49:07 -0800
committererichkeane <ekeane@nvidia.com>2024-01-05 06:49:32 -0800
commit0f8adc8d30d2cd4a9fcf8455b64a1d66fa971339 (patch)
tree9c11d055aa51a8b2ba16be28766be276cd264e2f
parent59569eb756265b2a5d9d96f6c6c5ee1a3c371c4f (diff)
[OpenACC] Fix comments on OpenACC enum to use ///
-rw-r--r--clang/include/clang/Basic/OpenACCKinds.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/clang/include/clang/Basic/OpenACCKinds.h b/clang/include/clang/Basic/OpenACCKinds.h
index 3117d584d347..54a29f8428e9 100644
--- a/clang/include/clang/Basic/OpenACCKinds.h
+++ b/clang/include/clang/Basic/OpenACCKinds.h
@@ -72,25 +72,25 @@ enum class OpenACCAtomicKind {
/// Represents the kind of an OpenACC clause.
enum class OpenACCClauseKind {
- // 'finalize' clause, allowed on 'exit data' directive.
+ /// 'finalize' clause, allowed on 'exit data' directive.
Finalize,
- // 'if_present' clause, allowed on 'host_data' and 'update' directives.
+ /// 'if_present' clause, allowed on 'host_data' and 'update' directives.
IfPresent,
- // 'seq' clause, allowed on 'loop' and 'routine' directives.
+ /// 'seq' clause, allowed on 'loop' and 'routine' directives.
Seq,
- // 'independent' clause, allowed on 'loop' directives.
+ /// 'independent' clause, allowed on 'loop' directives.
Independent,
- // 'auto' clause, allowed on 'loop' directives.
+ /// 'auto' clause, allowed on 'loop' directives.
Auto,
- // 'worker' clause, allowed on 'loop' and 'routine' directives.
+ /// 'worker' clause, allowed on 'loop' and 'routine' directives.
Worker,
- // 'vector' clause, allowed on 'loop' and 'routine' directives. Takes no
- // arguments for 'routine', so the 'loop' version is not yet implemented
- // completely.
+ /// 'vector' clause, allowed on 'loop' and 'routine' directives. Takes no
+ /// arguments for 'routine', so the 'loop' version is not yet implemented
+ /// completely.
Vector,
- // 'nohost' clause, allowed on 'routine' directives.
+ /// 'nohost' clause, allowed on 'routine' directives.
NoHost,
- // Represents an invalid clause, for the purposes of parsing.
+ /// Represents an invalid clause, for the purposes of parsing.
Invalid,
};
} // namespace clang