Skip to content

Commit 3f87574

Browse files
committed
Merge #17249: rpc: Add missing deque include to fix build
a592913 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 a592913 Tree-SHA512: fb0aee6a698c7aaa6a73baad7adc4f891be573af0d3cf6f4f59bc825afe5c0bc439c668077ff1990a6135522a0533a1a867430eebad28f0ade93fd79a95e179b
2 parents e9f73b8 + a592913 commit 3f87574

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/httpserver.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <sync.h>
1616
#include <ui_interface.h>
1717

18+
#include <deque>
1819
#include <memory>
1920
#include <stdio.h>
2021
#include <stdlib.h>

0 commit comments

Comments
 (0)