Browse Source

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`.
nce_cpp
Morph 6 years ago
committed by Rodrigo Locatti
parent
commit
091e3df7c7
  1. 4
      src/video_core/buffer_cache/buffer_cache.h

4
src/video_core/buffer_cache/buffer_cache.h

@ -12,6 +12,10 @@
#include <utility> #include <utility>
#include <vector> #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/alignment.h"
#include "common/common_types.h" #include "common/common_types.h"
#include "core/core.h" #include "core/core.h"

Loading…
Cancel
Save