Browse Source

Cpp:Comment out unnessary include in utf.h.

pull/567/head
Philip Liard 15 years ago
committed by Mihaela Rosca
parent
commit
8d31a63c2b
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      cpp/src/utf/utf.h

+ 4
- 1
cpp/src/utf/utf.h View File

@ -16,7 +16,10 @@
#ifndef _UTFH_ #ifndef _UTFH_
#define _UTFH_ 1 #define _UTFH_ 1
#include <stdint.h>
// 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 <stdint.h>
typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/ typedef signed int Rune; /* Code-point values in Unicode 4.0 are 21 bits wide.*/


Loading…
Cancel
Save