aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@bitpay.com>2013-07-22 08:08:27 -0700
committerJeff Garzik <jgarzik@bitpay.com>2013-07-22 08:08:27 -0700
commit0cb6d67e465a32799e18ce138f33861ef7f52bf0 (patch)
tree3a3a4e90727ba23feb5d10770875764ce5f503a8 /src
parent6c6255edb54bed780f0879c906dccf6cfa98b4db (diff)
parentd4e2b040ed5dc4f068c89039bc1a8610b68df5c7 (diff)
downloadbitcoin-0cb6d67e465a32799e18ce138f33861ef7f52bf0.tar.xz
Merge pull request #2832 from luke-jr/bugfix_wdb_boostver
Bugfix: Move boost/version include from db.cpp to walletdb.cpp where BOOST_VERSION is used
Diffstat (limited to 'src')
-rw-r--r--src/db.cpp1
-rw-r--r--src/walletdb.cpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/db.cpp b/src/db.cpp
index 93f3f5d8c4..03f46f3c26 100644
--- a/src/db.cpp
+++ b/src/db.cpp
@@ -8,7 +8,6 @@
#include "util.h"
#include "hash.h"
#include "addrman.h"
-#include <boost/version.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <openssl/rand.h>
diff --git a/src/walletdb.cpp b/src/walletdb.cpp
index 702e219a5b..7aad779767 100644
--- a/src/walletdb.cpp
+++ b/src/walletdb.cpp
@@ -5,6 +5,7 @@
#include "walletdb.h"
#include "wallet.h"
+#include <boost/version.hpp>
#include <boost/filesystem.hpp>
using namespace std;