From 2c50a6fab945194f2bf57e81ca5b4ab522e75f7f Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 3 Apr 2012 21:41:53 -0700 Subject: [PATCH] Don't require the very latest version of Boost. --- src/UniqueNodeList.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/UniqueNodeList.h b/src/UniqueNodeList.h index ecc641f4bb..e622c10165 100644 --- a/src/UniqueNodeList.h +++ b/src/UniqueNodeList.h @@ -1,6 +1,8 @@ #ifndef __UNIQUE_NODE_LIST__ #define __UNIQUE_NODE_LIST__ +#include + #include "../json/value.h" #include "NewcoinAddress.h" @@ -8,7 +10,6 @@ #include "HttpsClient.h" #include -#include // Guarantees minimum thoughput of 1 node per second. #define NODE_FETCH_JOBS 10 @@ -27,7 +28,7 @@ private: boost::mutex mFetchLock; int mFetchActive; // count of active fetches - boost::container::deque mFetchPending; + std::deque mFetchPending; void fetchNext(); void fetchProcess(std::string strDomain);