Include ordering fix (#2031)

This commit is contained in:
cryptocode 2019-05-27 12:39:52 +02:00 committed by GitHub
commit 6a3de92dd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View file

@ -1,5 +1,4 @@
#include <nano/node/network.hpp>
#include <nano/node/node.hpp>
#include <numeric>

View file

@ -4,12 +4,12 @@
#include <nano/node/transport/tcp.hpp>
#include <nano/node/transport/udp.hpp>
#include <memory>
#include <queue>
#include <boost/asio/thread_pool.hpp>
#include <boost/thread/thread.hpp>
#include <memory>
#include <queue>
namespace nano
{
class channel;

View file

@ -3,8 +3,6 @@
#include <nano/node/common.hpp>
#include <nano/node/transport/transport.hpp>
#include <mutex>
#include <boost/asio/buffer.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/mem_fun.hpp>
@ -13,6 +11,8 @@
#include <boost/multi_index/random_access_index.hpp>
#include <boost/multi_index_container.hpp>
#include <mutex>
namespace nano
{
class message_buffer;