v0.23.x: RemoteTagCache: add missing include

Fix build with Boost 1.81.0. `<array>` was included by one of those boost headers,
however, it's no longer included as of Boost 1.81.0.

`master` doesn't use `std::array` in this file.

While we're at it, add all necessary inclusion files.
This commit is contained in:
Đoàn Trần Công Danh
2022-12-01 08:29:23 +07:00
committed by GitHub
parent 9866adff95
commit e4b055eb6d

View File

@@ -28,7 +28,11 @@
#include <boost/intrusive/list.hpp>
#include <boost/intrusive/unordered_set.hpp>
#include <array>
#include <functional>
#include <memory>
#include <string>
#include <utility>
class RemoteTagCacheHandler;