Use c comments.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 25 Oct 2013 12:59:02 +0000 (12:59 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 25 Oct 2013 12:59:02 +0000 (12:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193404 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm-c/lto.h

index 02105bcde96311ed9307a73b5d22bc0e4de9f753..a09db24f983d52b179eca0c3b1402b76e89f4a9f 100644 (file)
@@ -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