aboutsummaryrefslogtreecommitdiff
path: root/src/net_processing.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2018-04-02 18:31:40 +0000
committerfanquake <fanquake@gmail.com>2018-06-13 16:07:44 +0800
commit18b0c69e2fc9f9d5cd56659abab467c2c6826be2 (patch)
tree22d3a44cc42c38480dc4247e8fdcf8197b8e540c /src/net_processing.cpp
parent4ea3e8ef070417ccc22007407d78fa0a41949bee (diff)
Bugfix: Include <memory> for std::unique_ptr
GitHub-Pull: #12859 Rebased-From: a5bca13
Diffstat (limited to 'src/net_processing.cpp')
-rw-r--r--src/net_processing.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp
index f1260f3ae4..eb5c258049 100644
--- a/src/net_processing.cpp
+++ b/src/net_processing.cpp
@@ -30,6 +30,8 @@
#include <utilmoneystr.h>
#include <utilstrencodings.h>
+#include <memory>
+
#if defined(NDEBUG)
# error "Bitcoin cannot be compiled without assertions."
#endif