diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2018-04-02 18:31:40 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2018-06-13 16:07:44 +0800 |
commit | 18b0c69e2fc9f9d5cd56659abab467c2c6826be2 (patch) | |
tree | 22d3a44cc42c38480dc4247e8fdcf8197b8e540c /src/bitcoin-cli.cpp | |
parent | 4ea3e8ef070417ccc22007407d78fa0a41949bee (diff) |
Bugfix: Include <memory> for std::unique_ptr
GitHub-Pull: #12859
Rebased-From: a5bca13
Diffstat (limited to 'src/bitcoin-cli.cpp')
-rw-r--r-- | src/bitcoin-cli.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index e9ef75eb7b..2b42faf443 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -15,6 +15,7 @@ #include <util.h> #include <utilstrencodings.h> +#include <memory> #include <stdio.h> #include <event2/buffer.h> |