From 8d31a63c2b0392f0bdf17e146c8e9cdbf4f738f2 Mon Sep 17 00:00:00 2001 From: Philip Liard Date: Wed, 2 Mar 2011 15:43:30 +0000 Subject: [PATCH] Cpp:Comment out unnessary include in utf.h. --- cpp/src/utf/utf.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cpp/src/utf/utf.h b/cpp/src/utf/utf.h index 9c2a2c53a..f4fd482a4 100644 --- a/cpp/src/utf/utf.h +++ b/cpp/src/utf/utf.h @@ -16,7 +16,10 @@ #ifndef _UTFH_ #define _UTFH_ 1 -#include +// stdint.h content doesn't seem to be used in this file and doesn't exist on +// Windows, therefore we comment it out here so that the code could be compiled +// on Windows. +//#include typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/