aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2013-07-15 22:13:42 +0000
committerWladimir J. van der Laan <laanwj@gmail.com>2013-12-05 09:15:39 +0100
commit89c2ea0891a9b0364982cbfdb65e64275906a49c (patch)
tree122ec345c1a53ae159ba63b194c58141def8b581
parentdf238b19755c65a6e5f7db660befff2ca8da09a6 (diff)
downloadbitcoin-89c2ea0891a9b0364982cbfdb65e64275906a49c.tar.xz
Bugfix: Move boost/version include from db.cpp to walletdb.cpp where BOOST_VERSION is used
-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 3133d99bf8..da20d362b6 100644
--- a/src/db.cpp
+++ b/src/db.cpp
@@ -6,7 +6,6 @@
#include "db.h"
#include "util.h"
#include "main.h"
-#include <boost/version.hpp>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
diff --git a/src/walletdb.cpp b/src/walletdb.cpp
index 81a21443a1..42f6bbde1e 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;