From: Jordan Rose Date: Fri, 18 Jan 2013 22:33:54 +0000 (+0000) Subject: Fix mismatched #endif. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd6bfd0d020c416fbe411678f2f100fde6112b4e;p=clang Fix mismatched #endif. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172860 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/ConvertUTF.h b/include/clang/Basic/ConvertUTF.h index cdc42699e3..fb05afdae7 100644 --- a/include/clang/Basic/ConvertUTF.h +++ b/include/clang/Basic/ConvertUTF.h @@ -154,7 +154,6 @@ ConversionResult ConvertUTF16toUTF32 ( ConversionResult ConvertUTF32toUTF16 ( const UTF32** sourceStart, const UTF32* sourceEnd, UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags); -#endif Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd); @@ -201,3 +200,5 @@ bool ConvertCodePointToUTF8(unsigned Source, char *&ResultPtr); #endif /* --------------------------------------------------------------------- */ + +#endif