diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-25 12:59:02 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-25 12:59:02 +0000 |
commit | fe3be1153fc7ebd1901ac7ac45c78d75780621b2 (patch) | |
tree | 12c2a5dbd82d4be5864b153599b08d8b1fed022e /llvm/include/llvm-c | |
parent | 1744d0ad83ae211042a5b18d287978569ec63cb1 (diff) | |
download | bcm5719-llvm-fe3be1153fc7ebd1901ac7ac45c78d75780621b2.tar.gz bcm5719-llvm-fe3be1153fc7ebd1901ac7ac45c78d75780621b2.zip |
Use c comments.
llvm-svn: 193404
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 |