[llvm] 3339940 - Fix -Wdocumentation warnings. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue May 11 01:59:11 PDT 2021
Author: Simon Pilgrim
Date: 2021-05-11T09:51:49+01:00
New Revision: 33399405f4423429ec92c98a116c9ddc486864ec
URL: https://github.com/llvm/llvm-project/commit/33399405f4423429ec92c98a116c9ddc486864ec
DIFF: https://github.com/llvm/llvm-project/commit/33399405f4423429ec92c98a116c9ddc486864ec.diff
LOG: Fix -Wdocumentation warnings. NFCI.
Added:
Modified:
llvm/include/llvm/Frontend/OpenMP/OMPConstants.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Frontend/OpenMP/OMPConstants.h b/llvm/include/llvm/Frontend/OpenMP/OMPConstants.h
index e0edc9e39b85..af3f249582de 100644
--- a/llvm/include/llvm/Frontend/OpenMP/OMPConstants.h
+++ b/llvm/include/llvm/Frontend/OpenMP/OMPConstants.h
@@ -111,11 +111,11 @@ inline std::string getAllAssumeClauseOptions() {
/// Todo: Update kmp.h to include this file, and remove the enums in kmp.h
/// To complete this, more enum values will need to be moved here.
enum class OMPScheduleType {
- Static = 34, //< static unspecialized
+ Static = 34, // static unspecialized
DynamicChunked = 35,
- GuidedChunked = 36, //< guided unspecialized
+ GuidedChunked = 36, // guided unspecialized
Runtime = 37,
- Auto = 38, //< auto
+ Auto = 38, // auto
ModifierNonmonotonic =
(1 << 30), /**< Set if the nonmonotonic schedule modifier was present */
More information about the llvm-commits
mailing list