Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Sep 17, 2024
1 parent d5b4559 commit abe6308
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Source/CesiumRuntime/Private/Tests/CesiumLoadQueryTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ bool FCesiumTerrainQuerySingleQuery::RunTest(const FString& Parameters) {
Cesium3DTilesSelection::Tileset* nativeTileset = tileset->GetTileset();

nativeTileset->sampleHeightMostDetailed(queryInputRadians)
.thenInMainThread([&testResults](
Cesium3DTilesSelection::SampleHeightResult&&
results) {
testResults.heightResults = std::move(results);
testResults.queryFinished = true;
});
.thenInMainThread(
[&testResults](
Cesium3DTilesSelection::SampleHeightResult&& results) {
testResults.heightResults = std::move(results);
testResults.queryFinished = true;
});
};

auto waitForQueries = [this, &testResults = testResults](
Expand Down

0 comments on commit abe6308

Please sign in to comment.