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/qt/bitcoin.cpp | |
parent | 9d9c4185fadaf243bb97c226e2fef16b65299699 (diff) |
Bugfix: Include <memory> for std::unique_ptr
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 0666dcb9a3..e09dbd8132 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -37,6 +37,7 @@ #include <wallet/wallet.h> #endif +#include <memory> #include <stdint.h> #include <boost/thread.hpp> |