Skip to content

Commit

Permalink
fix gcc/clang issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinp7 committed Sep 3, 2021
1 parent 1b394b9 commit cbb6e28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cesium3DTilesSelection/src/Tile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ bool Tile::isRenderable() const noexcept {
this->_rasterTiles.end(),
[](const RasterMappedTo3DTile& rasterTile) -> bool {
return rasterTile.getReadyTile() ||
rasterTile.getLoadingTile() &&
rasterTile.getLoadingTile()->getState() >=
RasterOverlayTile::LoadState::Loaded;
(rasterTile.getLoadingTile() &&
rasterTile.getLoadingTile()->getState() >=
RasterOverlayTile::LoadState::Loaded);
});
}
}
Expand Down

0 comments on commit cbb6e28

Please sign in to comment.