Commit 5efc3712 authored by Kenton Varda's avatar Kenton Varda

Fix MSVC: Move windows.h includes after KJ includes.

parent b816c507
......@@ -22,6 +22,13 @@
#if _WIN32
// For Unix implementation, see filesystem-disk-unix.c++.
#include "filesystem.h"
#include "debug.h"
#include "encoding.h"
#include "vector.h"
#include <algorithm>
#include <wchar.h>
// Request Vista-level APIs.
#define WINVER 0x0600
#define _WIN32_WINNT 0x0600
......@@ -30,13 +37,7 @@
#include <windows.h>
#include <winioctl.h>
#include <wchar.h>
#include "windows-sanity.h"
#include "filesystem.h"
#include "debug.h"
#include "encoding.h"
#include "vector.h"
#include <algorithm>
namespace kj {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment