diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2019-11-07 01:25:53 -0500 |
---|---|---|
committer | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-11-07 06:25:53 +0000 |
commit | 0e8a3bf3e574dab3caf87865cc0b492687fa9a2d (patch) | |
tree | 9fd00391ecc4d5c22fc5f7998580a55a9565eaf9 /src | |
parent | 344d15f61e3083a427604d5a5e21132487032ce1 (diff) |
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`.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/buffer_cache/buffer_cache.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h index 63b3a8205..4408b5001 100644 --- a/src/video_core/buffer_cache/buffer_cache.h +++ b/src/video_core/buffer_cache/buffer_cache.h @@ -12,6 +12,10 @@ #include <utility> #include <vector> +#include <boost/icl/interval_map.hpp> +#include <boost/icl/interval_set.hpp> +#include <boost/range/iterator_range.hpp> + #include "common/alignment.h" #include "common/common_types.h" #include "core/core.h" |