From 82e773143a1bad6efacc2d439d5bb2ffad809466 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 26 Jan 2014 03:17:42 +0400 Subject: [PATCH] Include winsock2.h before windows.h --- src/checkpoints.h | 2 +- src/irc.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/checkpoints.h b/src/checkpoints.h index d5028b3..d55eccb 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -5,8 +5,8 @@ #define BITCOIN_CHECKPOINT_H #include -#include "net.h" #include "util.h" +#include "net.h" #define CHECKPOINT_MAX_SPAN (60 * 60) // max 60 minutes before latest block diff --git a/src/irc.cpp b/src/irc.cpp index 4a87fb7..6275a9d 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -4,9 +4,9 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "irc.h" -#include "net.h" #include "strlcpy.h" #include "base58.h" +#include "net.h" using namespace std; using namespace boost; -- 1.7.1