summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2019-09-27 10:35:51 +0700
committer GitHub <noreply@github.com>2019-09-27 10:35:51 +0700
commita0a1148938c33bb74c3725d3c9ea0c65c5b6f0c1 (patch)
tree6e2a691cdec220b7d60bb1591e46de2fca335273
parent1d8c814c50f884fb5c7a55285c6d52462cfa391f (diff)
stop breaking msvc (nw)
This isn't the right solution, the ASIO stuff should move to the build system according to @cuavas, but this gets msvc working again.
-rw-r--r--src/emu/http.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/http.cpp b/src/emu/http.cpp
index 3a28fa270c0..5b0dcca8d05 100644
--- a/src/emu/http.cpp
+++ b/src/emu/http.cpp
@@ -7,12 +7,13 @@ http.cpp
HTTP server handling
***************************************************************************/
+#include "emu.h"
+
#ifdef __sun
#define ASIO_DISABLE_DEV_POLL
#define ASIO_HAS_EPOLL
#endif
-#include "emu.h"
#include "server_ws_impl.hpp"
#include "server_http_impl.hpp"
#include <fstream>