We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d381a14 commit 1bceed7Copy full SHA for 1bceed7
Cesium3DTilesSelection/test/TestTileLoadRequester.cpp
@@ -27,7 +27,7 @@ class TestTileLoadRequester : public TileLoadRequester {
27
CESIUM_ASSERT(!this->_workerThread.empty());
28
const Tile* pResult = this->_workerThread.back();
29
this->_workerThread.pop_back();
30
- return const_cast<Tile*>(pResult);
+ return pResult;
31
}
32
33
bool hasMoreTilesToLoadInMainThread() const override {
@@ -38,7 +38,7 @@ class TestTileLoadRequester : public TileLoadRequester {
38
CESIUM_ASSERT(!this->_mainThread.empty());
39
const Tile* pResult = this->_mainThread.back();
40
this->_mainThread.pop_back();
41
42
43
44
// Extra methods for testing
0 commit comments