From e7a03c98f0a3c0263ac569ad42cb5329672fd7ee Mon Sep 17 00:00:00 2001 From: Sebastian Redl Date: Thu, 14 Apr 2011 14:07:49 +0000 Subject: [PATCH] Add header guards to include/clang/Basic/ConvertUTF.h. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129515 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/ConvertUTF.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/clang/Basic/ConvertUTF.h b/include/clang/Basic/ConvertUTF.h index 4da2ad7572..d928f9d0f6 100644 --- a/include/clang/Basic/ConvertUTF.h +++ b/include/clang/Basic/ConvertUTF.h @@ -87,6 +87,9 @@ ------------------------------------------------------------------------ */ +#ifndef CLANG_BASIC_CONVERTUTF_H +#define CLANG_BASIC_CONVERTUTF_H + /* --------------------------------------------------------------------- The following 4 definitions are compiler-specific. The C standard does not guarantee that wchar_t has at least @@ -156,4 +159,6 @@ Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd); } #endif +#endif + /* --------------------------------------------------------------------- */ -- 2.40.0