diff options
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/lto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm-c/lto.h b/llvm/include/llvm-c/lto.h index 02105bcde96..a09db24f983 100644 --- a/llvm/include/llvm-c/lto.h +++ b/llvm/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 |