From 33965576e8d8c020975a43b77ea586d3cfc8d35f Mon Sep 17 00:00:00 2001 From: Francesco Pretto Date: Sat, 25 Apr 2020 20:56:22 +0200 Subject: [PATCH] Avoid defining fixed width integer types if detected c++11 --- source/utf8/core.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/utf8/core.h b/source/utf8/core.h index ce2e3b8..4a3c9f2 100644 --- a/source/utf8/core.h +++ b/source/utf8/core.h @@ -40,6 +40,7 @@ DEALINGS IN THE SOFTWARE. #endif #if UTF_CPP_CPLUSPLUS >= 201103L // C++ 11 or later + #include #define OVERRIDE override #define NOEXCEPT noexcept #else // C++ 98/03 @@ -50,12 +51,14 @@ DEALINGS IN THE SOFTWARE. namespace utf8 { +#if UTF_CPP_CPLUSPLUS < 201103L // C++ 98/03 // The typedefs for 8-bit, 16-bit and 32-bit unsigned integers // You may need to change them to match your system. // These typedefs have the same names as ones from cstdint, or boost/cstdint typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; +#endif enum endianess {