aboutsummaryrefslogtreecommitdiffstats
path: root/fork.cpp
diff options
context:
space:
mode:
authorjhuntley <jhuntley@houghtonassociates.com>2015-01-17 05:55:46 +0800
committerjhuntley <jhuntley@houghtonassociates.com>2015-03-05 00:17:45 +0800
commit26ba1086b82497f9100c0283955c6ea4e742aee0 (patch)
treefa285535b97e8efc19cd20f0bc663bfc48398b27 /fork.cpp
parentb5693332fb66e157e135bbeb6a798e83b0f33a6a (diff)
downloaddexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar.gz
dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar.zst
dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.zip
Avoid boost include order issue on windows:
http://stackoverflow.com/questions/9750344/boostasio-winsock-and-winsock-2-compatibility-issue http://stackoverflow.com/questions/9750344/boostasio-winsock-and-winsock-2-compatibility-issue/16288859#16288859 Make sure boost/asio.hpp is included before windows.h.
Diffstat (limited to 'fork.cpp')
-rw-r--r--fork.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fork.cpp b/fork.cpp
index bc6ed87b..93458316 100644
--- a/fork.cpp
+++ b/fork.cpp
@@ -19,7 +19,7 @@
* @date 2014
* Tests for different forking behavior
*/
-
+#include <boost/asio.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/filesystem/operations.hpp>
#include <libethereum/Client.h>