From 0e8a3bf3e574dab3caf87865cc0b492687fa9a2d Mon Sep 17 00:00:00 2001 From: Morph <39850852+Morph1984@users.noreply.github.com> Date: Thu, 7 Nov 2019 01:25:53 -0500 Subject: [PATCH] buffer_cache: Add missing includes (#3079) `boost::make_iterator_range` is available when `boost/range/iterator_range.hpp` is included. Also include `boost/icl/interval_map.hpp` and `boost/icl/interval_set.hpp`. --- src/video_core/buffer_cache/buffer_cache.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h index 63b3a8205c..4408b50014 100644 --- a/src/video_core/buffer_cache/buffer_cache.h +++ b/src/video_core/buffer_cache/buffer_cache.h @@ -12,6 +12,10 @@ #include #include +#include +#include +#include + #include "common/alignment.h" #include "common/common_types.h" #include "core/core.h"