diff options
| author | 2019-11-07 01:25:53 -0500 | |
|---|---|---|
| committer | 2019-11-07 06:25:53 +0000 | |
| commit | 0e8a3bf3e574dab3caf87865cc0b492687fa9a2d (patch) | |
| tree | 9fd00391ecc4d5c22fc5f7998580a55a9565eaf9 | |
| parent | Merge pull request #3070 from ReinUsesLisp/shader-warnings (diff) | |
| download | yuzu-0e8a3bf3e574dab3caf87865cc0b492687fa9a2d.tar.gz yuzu-0e8a3bf3e574dab3caf87865cc0b492687fa9a2d.tar.xz yuzu-0e8a3bf3e574dab3caf87865cc0b492687fa9a2d.zip | |
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 '')
| -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 @@ | |||
| 12 | #include <utility> | 12 | #include <utility> |
| 13 | #include <vector> | 13 | #include <vector> |
| 14 | 14 | ||
| 15 | #include <boost/icl/interval_map.hpp> | ||
| 16 | #include <boost/icl/interval_set.hpp> | ||
| 17 | #include <boost/range/iterator_range.hpp> | ||
| 18 | |||
| 15 | #include "common/alignment.h" | 19 | #include "common/alignment.h" |
| 16 | #include "common/common_types.h" | 20 | #include "common/common_types.h" |
| 17 | #include "core/core.h" | 21 | #include "core/core.h" |