[llvm] r193404 - Use c comments.
Rafael Espindola
rafael.espindola at gmail.com
Fri Oct 25 05:59:02 PDT 2013
Author: rafael
Date: Fri Oct 25 07:59:02 2013
New Revision: 193404
URL: http://llvm.org/viewvc/llvm-project?rev=193404&view=rev
Log:
Use c comments.
Modified:
llvm/trunk/include/llvm-c/lto.h
Modified: llvm/trunk/include/llvm-c/lto.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/lto.h?rev=193404&r1=193403&r2=193404&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/lto.h (original)
+++ llvm/trunk/include/llvm-c/lto.h Fri Oct 25 07:59:02 2013
@@ -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
More information about the llvm-commits
mailing list