Skip to content

Commit

Permalink
Additional int casts.
Browse files Browse the repository at this point in the history
  • Loading branch information
josephbirkner committed Feb 22, 2024
1 parent 592bc17 commit 540522a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cesium3DTilesSelection/src/LayerJsonTerrainLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ Future<LoadLayersResult> loadLayerJson(
LoadLayersResult result;
result.errors.emplaceError(fmt::format(
"Error when parsing layer.json, error code {} at byte offset {}",
layerJson.GetParseError(),
(int)layerJson.GetParseError(),
layerJson.GetErrorOffset()));
return asyncSystem.createResolvedFuture(std::move(result));
}
Expand Down

0 comments on commit 540522a

Please sign in to comment.