diff options
| author | Jeff Garzik <[email protected]> | 2011-06-19 20:04:24 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-06-19 20:04:24 -0700 |
| commit | 04e442070d3db1abb761d3e04d80d6ece6d5602b (patch) | |
| tree | 50b003c2489e71bb481d847c990ab41ccd954e50 /src | |
| parent | Merge pull request #331 from TheBlueMatt/translatefix (diff) | |
| parent | Fix missing includes needed for Boost 1.46. (diff) | |
| download | discoin-04e442070d3db1abb761d3e04d80d6ece6d5602b.tar.xz discoin-04e442070d3db1abb761d3e04d80d6ece6d5602b.zip | |
Merge pull request #332 from shanew/master
Include missing Boost header
Diffstat (limited to 'src')
| -rw-r--r-- | src/db.cpp | 1 | ||||
| -rw-r--r-- | src/init.cpp | 1 | ||||
| -rw-r--r-- | src/main.cpp | 1 | ||||
| -rw-r--r-- | src/rpc.cpp | 1 | ||||
| -rw-r--r-- | src/util.cpp | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/src/db.cpp b/src/db.cpp index d5405d70e..f044355a3 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -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; diff --git a/src/init.cpp b/src/init.cpp index 62bf1693f..a0c90e0a7 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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> diff --git a/src/main.cpp b/src/main.cpp index e3ec47d2f..731402194 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; diff --git a/src/rpc.cpp b/src/rpc.cpp index 5b395f947..dabd99d07 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -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 diff --git a/src/util.cpp b/src/util.cpp index b95e23616..b18d75c6a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -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> |