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/httpserver.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/httpserver.cpp')
| -rw-r--r-- | src/httpserver.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index a022d220e..bbcf2942c 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -13,6 +13,7 @@ #include <sync.h> #include <ui_interface.h> +#include <memory> #include <stdio.h> #include <stdlib.h> #include <string.h> |