diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-04-05 09:30:36 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-04-05 09:31:53 +0200 |
| commit | bd59c4395c504e7bddbce80048ed65a53fb26f67 (patch) | |
| tree | cdc0a6abc1aa3a1bcf5198930915e23dfbf9f6b3 /src/httprpc.cpp | |
| parent | Merge #12887: [trivial] Add newlines to end of log messages. (diff) | |
| parent | Bugfix: Include <memory> for std::unique_ptr (diff) | |
| download | discoin-bd59c4395c504e7bddbce80048ed65a53fb26f67.tar.xz discoin-bd59c4395c504e7bddbce80048ed65a53fb26f67.zip | |
Merge #12859: Bugfix: Include <memory> for std::unique_ptr
a5bca13 Bugfix: Include <memory> for std::unique_ptr (Luke Dashjr)
Pull request description:
Not sure why all these includes were missing, but it's breaking builds for some users:
https://bugs.gentoo.org/show_bug.cgi?id=652142
(Added to all files with a reference to `std::unique_ptr`)
Tree-SHA512: 8a2c67513ca07b9bb52c34e8a20b15e56f8af2530310d9ee9b0a69694dd05e02e7a3683f14101a2685d457672b56addec591a0bb83900a0eb8e2a43d43200509
Diffstat (limited to 'src/httprpc.cpp')
| -rw-r--r-- | src/httprpc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp index 0a70619ba..de2437943 100644 --- a/src/httprpc.cpp +++ b/src/httprpc.cpp @@ -17,6 +17,8 @@ #include <crypto/hmac_sha256.h> #include <stdio.h> +#include <memory> + #include <boost/algorithm/string.hpp> // boost::trim /** WWW-Authenticate to present with 401 Unauthorized response */ |