From 616400ed2f2afd89f2cdeabb9f373bff794f2912 Mon Sep 17 00:00:00 2001 From: "mark@chromium.org" Date: Thu, 5 Dec 2013 23:16:03 +0000 Subject: Add include guards and avoid redefinition of false/true in convert_UTF. Patch by Alistair Tse Review URL: https://breakpad.appspot.com/834002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1245 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/convert_UTF.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/common/convert_UTF.h') diff --git a/src/common/convert_UTF.h b/src/common/convert_UTF.h index b1556de8..c481c9cb 100644 --- a/src/common/convert_UTF.h +++ b/src/common/convert_UTF.h @@ -20,6 +20,9 @@ * remains attached. */ +#ifndef COMMON_CONVERT_UTF_H_ +#define COMMON_CONVERT_UTF_H_ + /* --------------------------------------------------------------------- Conversions between UTF32, UTF-16, and UTF-8. Header file. @@ -141,3 +144,5 @@ Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd); #endif /* --------------------------------------------------------------------- */ + +#endif // COMMON_CONVERT_UTF_H_ -- cgit v1.2.1