Use c comments.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193404 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2013-10-25 12:59:02 +00:00
parent c8f4e5db29
commit c7ef7c2de7

View 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