From ff91f2ef47cd16adffaa16ee83c45f6c3933a415 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175098 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/ConvertUTF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/ConvertUTF.h b/include/llvm/Support/ConvertUTF.h index d0f2ed3c08c..1eae6d66222 100644 --- a/include/llvm/Support/ConvertUTF.h +++ b/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