From edfd4c66937ee997b3bb98120d90f995c5dad732 Mon Sep 17 00:00:00 2001 From: Erik Broberg Date: Wed, 23 Nov 2016 13:10:05 +0100 Subject: [PATCH] Fix missing includes --- modules/globebrowsing/chunk/chunklevelevaluator.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/globebrowsing/chunk/chunklevelevaluator.cpp b/modules/globebrowsing/chunk/chunklevelevaluator.cpp index ded4a530d6..254da6f970 100644 --- a/modules/globebrowsing/chunk/chunklevelevaluator.cpp +++ b/modules/globebrowsing/chunk/chunklevelevaluator.cpp @@ -32,6 +32,9 @@ #include #include +#include +#include + #include @@ -176,8 +179,7 @@ namespace globebrowsing { const Chunk& chunk, const RenderData& data) const { auto layerManager = chunk.owner().chunkedLodGlobe()->layerManager(); - auto heightLayers = - layerManager->layerGroup(LayerManager::HeightLayers).activeLayers(); + auto heightLayers = layerManager->layerGroup(LayerManager::HeightLayers).activeLayers(); int currLevel = chunk.tileIndex().level; for (size_t i = 0; i < LayerManager::NUM_LAYER_GROUPS; i++) { @@ -193,4 +195,4 @@ namespace globebrowsing { return currLevel - 1; } } // namespace globebrowsing -} // namespace openspace \ No newline at end of file +} // namespace openspace