Don't require the very latest version of Boost.

This commit is contained in:
JoelKatz
2012-04-03 21:41:53 -07:00
parent 77700b5761
commit 2c50a6fab9

View File

@@ -1,6 +1,8 @@
#ifndef __UNIQUE_NODE_LIST__ #ifndef __UNIQUE_NODE_LIST__
#define __UNIQUE_NODE_LIST__ #define __UNIQUE_NODE_LIST__
#include <deque>
#include "../json/value.h" #include "../json/value.h"
#include "NewcoinAddress.h" #include "NewcoinAddress.h"
@@ -8,7 +10,6 @@
#include "HttpsClient.h" #include "HttpsClient.h"
#include <boost/thread/mutex.hpp> #include <boost/thread/mutex.hpp>
#include <boost/container/deque.hpp>
// Guarantees minimum thoughput of 1 node per second. // Guarantees minimum thoughput of 1 node per second.
#define NODE_FETCH_JOBS 10 #define NODE_FETCH_JOBS 10
@@ -27,7 +28,7 @@ private:
boost::mutex mFetchLock; boost::mutex mFetchLock;
int mFetchActive; // count of active fetches int mFetchActive; // count of active fetches
boost::container::deque<std::string> mFetchPending; std::deque<std::string> mFetchPending;
void fetchNext(); void fetchNext();
void fetchProcess(std::string strDomain); void fetchProcess(std::string strDomain);