diff options
author | jhuntley <jhuntley@houghtonassociates.com> | 2015-01-21 23:59:34 +0800 |
---|---|---|
committer | jhuntley <jhuntley@houghtonassociates.com> | 2015-03-05 00:17:46 +0800 |
commit | b6b80b020006e269c877faee85f6664a1cd925a0 (patch) | |
tree | 45def170676a389b1b6e9e79edac147a5e458e13 /hexPrefix.cpp | |
parent | 26ba1086b82497f9100c0283955c6ea4e742aee0 (diff) | |
download | dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.tar dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.tar.gz dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.tar.bz2 dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.tar.lz dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.tar.xz dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.tar.zst dexon-solidity-b6b80b020006e269c877faee85f6664a1cd925a0.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 'hexPrefix.cpp')
-rw-r--r-- | hexPrefix.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hexPrefix.cpp b/hexPrefix.cpp index 551983db..c96e9e98 100644 --- a/hexPrefix.cpp +++ b/hexPrefix.cpp @@ -21,11 +21,12 @@ */ #include <fstream> +#include <boost/asio.hpp> +#include <boost/test/unit_test.hpp> #include "JsonSpiritHeaders.h" #include <libdevcore/Log.h> #include <libdevcore/CommonIO.h> #include <libdevcrypto/TrieCommon.h> -#include <boost/test/unit_test.hpp> #include "TestHelper.h" using namespace std; |