From 6a3de92dd70661aa44d3887f7230eb47657b0404 Mon Sep 17 00:00:00 2001 From: cryptocode Date: Mon, 27 May 2019 12:39:52 +0200 Subject: [PATCH] Include ordering fix (#2031) --- nano/node/network.cpp | 1 - nano/node/network.hpp | 6 +++--- nano/node/transport/udp.hpp | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/nano/node/network.cpp b/nano/node/network.cpp index 6263b265..bb5a1501 100644 --- a/nano/node/network.cpp +++ b/nano/node/network.cpp @@ -1,5 +1,4 @@ #include - #include #include diff --git a/nano/node/network.hpp b/nano/node/network.hpp index b99c528e..560a3ee0 100644 --- a/nano/node/network.hpp +++ b/nano/node/network.hpp @@ -4,12 +4,12 @@ #include #include -#include -#include - #include #include +#include +#include + namespace nano { class channel; diff --git a/nano/node/transport/udp.hpp b/nano/node/transport/udp.hpp index 71827cf3..a320731d 100644 --- a/nano/node/transport/udp.hpp +++ b/nano/node/transport/udp.hpp @@ -3,8 +3,6 @@ #include #include -#include - #include #include #include @@ -13,6 +11,8 @@ #include #include +#include + namespace nano { class message_buffer;