summaryrefslogtreecommitdiff
path: root/include/llvm-c/lto.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm-c/lto.h')
-rw-r--r--include/llvm-c/lto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm-c/lto.h b/include/llvm-c/lto.h
index 02105bcde9..a09db24f98 100644
--- a/include/llvm-c/lto.h
+++ b/include/llvm-c/lto.h
@@ -24,9 +24,9 @@
#include <stdbool.h>
typedef bool lto_bool_t;
#else
-// MSVC in particular does not have anything like _Bool or bool in C, but we can
-// at least make sure the type is the same size. The implementation side will
-// use C++ bool.
+/* MSVC in particular does not have anything like _Bool or bool in C, but we can
+ at least make sure the type is the same size. The implementation side will
+ use C++ bool. */
typedef unsigned char lto_bool_t;
#endif
#else