summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-25 12:59:02 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-25 12:59:02 +0000
commitc7ef7c2de7f809f6407471048dd0302ebbc824ac (patch)
tree195ee305ecb05a2dcc2bfd9ed2d13d8786a34d8a /include
parentc8f4e5db29270fc7ed164af973ece7ba5921539b (diff)
downloadllvm-c7ef7c2de7f809f6407471048dd0302ebbc824ac.tar.gz
llvm-c7ef7c2de7f809f6407471048dd0302ebbc824ac.tar.bz2
llvm-c7ef7c2de7f809f6407471048dd0302ebbc824ac.tar.xz
Use c comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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