From d4e2b040ed5dc4f068c89039bc1a8610b68df5c7 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Mon, 15 Jul 2013 22:13:42 +0000 Subject: [PATCH] Bugfix: Move boost/version include from db.cpp to walletdb.cpp where BOOST_VERSION is used --- src/db.cpp | 1 - src/walletdb.cpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.cpp b/src/db.cpp index 93f3f5d8..03f46f3c 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -8,7 +8,6 @@ #include "util.h" #include "hash.h" #include "addrman.h" -#include #include #include #include diff --git a/src/walletdb.cpp b/src/walletdb.cpp index 702e219a..7aad7797 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -5,6 +5,7 @@ #include "walletdb.h" #include "wallet.h" +#include #include using namespace std;