aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-04-05 09:30:36 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2018-04-05 09:31:53 +0200
commitbd59c4395c504e7bddbce80048ed65a53fb26f67 (patch)
treecdc0a6abc1aa3a1bcf5198930915e23dfbf9f6b3 /src/validation.h
parent2fc94370f510f6d1fbd7a6a6cdedf2b14a3e9fb2 (diff)
parenta5bca13095aa835d61f872081fc0cc2fa53552f3 (diff)
downloadbitcoin-bd59c4395c504e7bddbce80048ed65a53fb26f67.tar.xz
Merge #12859: Bugfix: Include <memory> for std::unique_ptr
a5bca13 Bugfix: Include <memory> for std::unique_ptr (Luke Dashjr) Pull request description: Not sure why all these includes were missing, but it's breaking builds for some users: https://bugs.gentoo.org/show_bug.cgi?id=652142 (Added to all files with a reference to `std::unique_ptr`) Tree-SHA512: 8a2c67513ca07b9bb52c34e8a20b15e56f8af2530310d9ee9b0a69694dd05e02e7a3683f14101a2685d457672b56addec591a0bb83900a0eb8e2a43d43200509
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/validation.h b/src/validation.h
index 95c31bf0fc..dad6858b1e 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -22,6 +22,7 @@
#include <algorithm>
#include <exception>
#include <map>
+#include <memory>
#include <set>
#include <stdint.h>
#include <string>