diff options
author | jhuntley <jhuntley@houghtonassociates.com> | 2015-01-17 05:55:46 +0800 |
---|---|---|
committer | jhuntley <jhuntley@houghtonassociates.com> | 2015-03-05 00:17:45 +0800 |
commit | 26ba1086b82497f9100c0283955c6ea4e742aee0 (patch) | |
tree | fa285535b97e8efc19cd20f0bc663bfc48398b27 /fork.cpp | |
parent | b5693332fb66e157e135bbeb6a798e83b0f33a6a (diff) | |
download | dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar.gz dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar.bz2 dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar.lz dexon-solidity-26ba1086b82497f9100c0283955c6ea4e742aee0.tar.xz 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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |