diff options
| author | Luke Dashjr <[email protected]> | 2018-04-02 18:31:40 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2018-04-02 18:31:52 +0000 |
| commit | a5bca13095aa835d61f872081fc0cc2fa53552f3 (patch) | |
| tree | 3f4ce332a537159a48f4a37da47599590034baa5 /src/dbwrapper.cpp | |
| parent | Merge #12293: [rpc] Mention that HD is enabled if hdmasterkeyid is present (diff) | |
| download | discoin-a5bca13095aa835d61f872081fc0cc2fa53552f3.tar.xz discoin-a5bca13095aa835d61f872081fc0cc2fa53552f3.zip | |
Bugfix: Include <memory> for std::unique_ptr
Diffstat (limited to 'src/dbwrapper.cpp')
| -rw-r--r-- | src/dbwrapper.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dbwrapper.cpp b/src/dbwrapper.cpp index 4e1e403f6..ac122a354 100644 --- a/src/dbwrapper.cpp +++ b/src/dbwrapper.cpp @@ -4,6 +4,7 @@ #include <dbwrapper.h> +#include <memory> #include <random.h> #include <leveldb/cache.h> |