diff options
author | Brad King <brad.king@kitware.com> | 2019-01-17 15:20:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-17 15:27:14 (GMT) |
commit | 1136275ae16cb0cc182e50f73d646445580b2634 (patch) | |
tree | 1fb4b42373edb860936c3e63a8d978e94d4b94e7 /Utilities/cmlibuv/include/uv/win.h | |
parent | 1e1209729b26312cb511d5995bd57b6f5d35235e (diff) | |
download | CMake-1136275ae16cb0cc182e50f73d646445580b2634.zip CMake-1136275ae16cb0cc182e50f73d646445580b2634.tar.gz CMake-1136275ae16cb0cc182e50f73d646445580b2634.tar.bz2 |
libuv: Include uv/ headers from each other without any path
Headers in `uv/` can include each other without the `uv/` prefix. Using
the prefix assumes that the location of `uv/` is in the include file
search path, but it is possible to include `uv.h` via a longer path.
Diffstat (limited to 'Utilities/cmlibuv/include/uv/win.h')
-rw-r--r-- | Utilities/cmlibuv/include/uv/win.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/cmlibuv/include/uv/win.h b/Utilities/cmlibuv/include/uv/win.h index ff24ea0..f3d3809 100644 --- a/Utilities/cmlibuv/include/uv/win.h +++ b/Utilities/cmlibuv/include/uv/win.h @@ -54,13 +54,13 @@ typedef struct pollfd { #include <sys/stat.h> #if defined(_MSC_VER) && _MSC_VER < 1600 -# include "uv/stdint-msvc2008.h" +# include "stdint-msvc2008.h" #else # include <stdint.h> #endif -#include "uv/tree.h" -#include "uv/threadpool.h" +#include "tree.h" +#include "threadpool.h" #define MAX_PIPENAME_LEN 256 |