Explorar el Código

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`.
Morph hace 6 años
padre
commit
0e8a3bf3e5
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      src/video_core/buffer_cache/buffer_cache.h

+ 4 - 0
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"