aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@protonmail.com>2019-10-26 12:04:50 +0200
committerWladimir J. van der Laan <laanwj@protonmail.com>2019-10-26 12:05:04 +0200
commit3f875744cb61d63f010900dafdb7bbc451de5ead (patch)
treea292199bcf31e6e24f06b5afe17c8fa84b9d8079 /src
parente9f73b839ad9732d7c8f2f4fcbf6ef8eaa267fa3 (diff)
parenta5929130223973636f3fd25fbfaf2953f2ec96a9 (diff)
downloadbitcoin-3f875744cb61d63f010900dafdb7bbc451de5ead.tar.xz
Merge #17249: rpc: Add missing deque include to fix build
a5929130223973636f3fd25fbfaf2953f2ec96a9 http: add missing header bootlegged by boost < 1.72 (Jan Beich) Pull request description: Regressed by boostorg/filesystem@9a14c37d6f95. See [error log](https://github.com/bitcoin/bitcoin/files/3772177/bitcoin-0.18.1.log). ```c++ httpserver.cpp:74:10: error: no template named 'deque' in namespace 'std' std::deque<std::unique_ptr<WorkItem>> queue; ~~~~~^ ``` ACKs for top commit: laanwj: ACK a5929130223973636f3fd25fbfaf2953f2ec96a9 Tree-SHA512: fb0aee6a698c7aaa6a73baad7adc4f891be573af0d3cf6f4f59bc825afe5c0bc439c668077ff1990a6135522a0533a1a867430eebad28f0ade93fd79a95e179b
Diffstat (limited to 'src')
-rw-r--r--src/httpserver.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp
index 8113777187..d9c7113323 100644
--- a/src/httpserver.cpp
+++ b/src/httpserver.cpp
@@ -15,6 +15,7 @@
#include <sync.h>
#include <ui_interface.h>
+#include <deque>
#include <memory>
#include <stdio.h>
#include <stdlib.h>