Browse Source

Merge pull request #332 from shanew/master

Include missing Boost header
0.8
Jeff Garzik 13 years ago
parent
commit
04e442070d
  1. 1
      src/db.cpp
  2. 1
      src/init.cpp
  3. 1
      src/main.cpp
  4. 1
      src/rpc.cpp
  5. 1
      src/util.cpp

1
src/db.cpp

@ -5,6 +5,7 @@ @@ -5,6 +5,7 @@
#include "headers.h"
#include "db.h"
#include "net.h"
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
using namespace std;

1
src/init.cpp

@ -7,6 +7,7 @@ @@ -7,6 +7,7 @@
#include "net.h"
#include "init.h"
#include "strlcpy.h"
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/interprocess/sync/file_lock.hpp>

1
src/main.cpp

@ -6,6 +6,7 @@ @@ -6,6 +6,7 @@
#include "net.h"
#include "init.h"
#include "cryptopp/sha.h"
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
using namespace std;

1
src/rpc.cpp

@ -14,6 +14,7 @@ @@ -14,6 +14,7 @@
#include <boost/algorithm/string.hpp>
#ifdef USE_SSL
#include <boost/asio/ssl.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> SSLStream;
#endif

1
src/util.cpp

@ -5,6 +5,7 @@ @@ -5,6 +5,7 @@
#include "strlcpy.h"
#include <boost/program_options/detail/config_file.hpp>
#include <boost/program_options/parsers.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/interprocess/sync/interprocess_mutex.hpp>
#include <boost/interprocess/sync/interprocess_recursive_mutex.hpp>

Loading…
Cancel
Save