aboutsummaryrefslogtreecommitdiff
path: root/src/httprpc.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2018-04-02 18:31:40 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2018-04-02 18:31:52 +0000
commita5bca13095aa835d61f872081fc0cc2fa53552f3 (patch)
tree3f4ce332a537159a48f4a37da47599590034baa5 /src/httprpc.cpp
parent9d9c4185fadaf243bb97c226e2fef16b65299699 (diff)
downloadbitcoin-a5bca13095aa835d61f872081fc0cc2fa53552f3.tar.xz
Bugfix: Include <memory> for std::unique_ptr
Diffstat (limited to 'src/httprpc.cpp')
-rw-r--r--src/httprpc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp
index 5e9e419744..1d0cfcc55a 100644
--- a/src/httprpc.cpp
+++ b/src/httprpc.cpp
@@ -17,6 +17,8 @@
#include <crypto/hmac_sha256.h>
#include <stdio.h>
+#include <memory>
+
#include <boost/algorithm/string.hpp> // boost::trim
/** WWW-Authenticate to present with 401 Unauthorized response */