mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
asio.h and windows.h build comments as per request.
This commit is contained in:
parent
b6b80b0200
commit
5ae585f7cf
@ -23,8 +23,11 @@
|
||||
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
#include <libethereum/Client.h>
|
||||
#include <liblll/Compiler.h>
|
||||
#include <libevm/VMFactory.h>
|
||||
|
@ -22,8 +22,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libethereum/State.h>
|
||||
#include <libevm/ExtVMFace.h>
|
||||
|
@ -20,7 +20,9 @@
|
||||
* Check a random test and return 0/1 for success or failure. To be used for efficiency in the random test simulation.
|
||||
*/
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
|
||||
#include <libdevcore/Common.h>
|
||||
#include <libdevcore/Exceptions.h>
|
||||
#include <libdevcore/Log.h>
|
||||
|
@ -23,9 +23,12 @@
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <chrono>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/random.hpp>
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||
#include <json_spirit/json_spirit.h>
|
||||
#include <json_spirit/json_spirit_reader_template.h>
|
||||
|
3
fork.cpp
3
fork.cpp
@ -19,9 +19,12 @@
|
||||
* @date 2014
|
||||
* Tests for different forking behavior
|
||||
*/
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/filesystem/operations.hpp>
|
||||
|
||||
#include <libethereum/Client.h>
|
||||
#include <libethereum/CanonBlockChain.h>
|
||||
#include <libethereum/EthereumHost.h>
|
||||
|
@ -21,8 +21,11 @@
|
||||
*/
|
||||
|
||||
#include <fstream>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libdevcore/Log.h>
|
||||
#include <libdevcore/CommonIO.h>
|
||||
|
2
net.cpp
2
net.cpp
@ -19,8 +19,10 @@
|
||||
* @date 2014
|
||||
*/
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <libdevcore/Worker.h>
|
||||
#include <libdevcrypto/Common.h>
|
||||
#include <libp2p/UDP.h>
|
||||
|
3
rlp.cpp
3
rlp.cpp
@ -22,8 +22,11 @@
|
||||
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <libdevcore/Log.h>
|
||||
#include <libdevcore/RLP.h>
|
||||
#include <libdevcore/Common.h>
|
||||
|
@ -20,9 +20,11 @@
|
||||
* State test functions.
|
||||
*/
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/filesystem/operations.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libdevcore/CommonIO.h>
|
||||
#include <libethereum/CanonBlockChain.h>
|
||||
|
3
trie.cpp
3
trie.cpp
@ -22,8 +22,11 @@
|
||||
|
||||
#include <fstream>
|
||||
#include <random>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include "JsonSpiritHeaders.h"
|
||||
#include <libdevcore/CommonIO.h>
|
||||
#include <libdevcrypto/TrieDB.h>
|
||||
|
@ -19,9 +19,12 @@
|
||||
* @date 2014
|
||||
* Simple peer transaction send test.
|
||||
*/
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/filesystem/operations.hpp>
|
||||
|
||||
#include <libethereum/Client.h>
|
||||
#include <libethereum/CanonBlockChain.h>
|
||||
#include <libethereum/EthereumHost.h>
|
||||
|
3
vm.cpp
3
vm.cpp
@ -21,8 +21,11 @@
|
||||
*/
|
||||
|
||||
#include <chrono>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/filesystem.hpp>
|
||||
|
||||
#include <libethereum/Executive.h>
|
||||
#include <libevm/VMFactory.h>
|
||||
#include "vm.h"
|
||||
|
3
vm.h
3
vm.h
@ -25,8 +25,11 @@ along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include <fstream>
|
||||
#include <cstdint>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <json_spirit/json_spirit.h>
|
||||
#include <libdevcore/Log.h>
|
||||
#include <libdevcore/CommonIO.h>
|
||||
|
@ -19,8 +19,11 @@
|
||||
* @date 2014
|
||||
*/
|
||||
#include <functional>
|
||||
|
||||
// Make sure boost/asio.hpp is included before windows.h.
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <libp2p/Host.h>
|
||||
#include <libwhisper/WhisperPeer.h>
|
||||
#include <libwhisper/WhisperHost.h>
|
||||
|
Loading…
Reference in New Issue
Block a user