From cb06d3030c303e24a3b30e66e96b2f1b5fe46d78 Mon Sep 17 00:00:00 2001 From: Alex Rosenberg Date: Wed, 13 Feb 2013 22:45:52 +0000 Subject: [PATCH] llvm-gcc -pedantic warns about C++ comments in C90 mode even if they're inside an #if 0 block. llvm-svn: 175098 --- llvm/include/llvm/Support/ConvertUTF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/ConvertUTF.h b/llvm/include/llvm/Support/ConvertUTF.h index d0f2ed3c08cd..1eae6d662229 100644 --- a/llvm/include/llvm/Support/ConvertUTF.h +++ b/llvm/include/llvm/Support/ConvertUTF.h @@ -219,7 +219,7 @@ static inline ConversionResult convertUTF8Sequence(const UTF8 **source, return sourceExhausted; return ConvertUTF8toUTF32(source, *source + size, &target, target + 1, flags); } -} // end namespace llvm +} /* end namespace llvm */ #endif