diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2018-04-02 18:31:40 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2018-04-02 18:31:52 +0000 |
commit | a5bca13095aa835d61f872081fc0cc2fa53552f3 (patch) | |
tree | 3f4ce332a537159a48f4a37da47599590034baa5 /src/rpc/blockchain.cpp | |
parent | 9d9c4185fadaf243bb97c226e2fef16b65299699 (diff) |
Bugfix: Include <memory> for std::unique_ptr
Diffstat (limited to 'src/rpc/blockchain.cpp')
-rw-r--r-- | src/rpc/blockchain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 346672e45a..104e765539 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -33,6 +33,7 @@ #include <boost/thread/thread.hpp> // boost::thread::interrupt +#include <memory> #include <mutex> #include <condition_variable> |