libuv: Remove MSVC 2008 stdint from uv.h and uv-win.h.

This commit is contained in:
Peter Johnson
2018-06-17 12:48:25 -07:00
parent 9d7792ead0
commit 13e1af259c
2 changed files with 2 additions and 10 deletions

View File

@@ -50,11 +50,7 @@ extern "C" {
#include <stddef.h>
#include <stdio.h>
#if defined(_MSC_VER) && _MSC_VER < 1600
# include "uv/stdint-msvc2008.h"
#else
# include <stdint.h>
#endif
#include <stdint.h>
#if defined(_WIN32)
# include "uv/win.h"

View File

@@ -52,11 +52,7 @@ typedef struct pollfd {
#include <fcntl.h>
#include <sys/stat.h>
#if defined(_MSC_VER) && _MSC_VER < 1600
# include "uv/stdint-msvc2008.h"
#else
# include <stdint.h>
#endif
#include <stdint.h>
#include "uv/tree.h"
#include "uv/threadpool.h"