From c7ef7c2de7f809f6407471048dd0302ebbc824ac Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 25 Oct 2013 12:59:02 +0000 Subject: [PATCH] Use c comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193404 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm-c/lto.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm-c/lto.h b/include/llvm-c/lto.h index 02105bcde96..a09db24f983 100644 --- a/include/llvm-c/lto.h +++ b/include/llvm-c/lto.h @@ -24,9 +24,9 @@ #include 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 -- 2.34.1