Included missing stdint.h header in utf8.cpp

This commit is contained in:
Siteshwar Vashisht 2014-03-23 15:09:43 +05:30
parent aabed8279e
commit a67dd9fbdd

View file

@ -13,8 +13,9 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
#include <sys/types.h>
#include <sys/types.h>
#include <stdint.h>
#include <wchar.h> #include <wchar.h>
#include "utf8.h" #include "utf8.h"
@ -23,7 +24,6 @@
#include <vector> #include <vector>
#include <limits> #include <limits>
#define _NXT 0x80 #define _NXT 0x80
#define _SEQ2 0xc0 #define _SEQ2 0xc0
#define _SEQ3 0xe0 #define _SEQ3 0xe0