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 d265b53 commit 592bc17
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 @@ -386,7 +386,7 @@ Future<LoadLayersResult> loadLayersRecursive(
loadLayersResult.errors.emplaceWarning(fmt::format(
"Error when parsing layer.json, error code {} at byte "
"offset {}",
layerJson.GetParseError(),
(int)layerJson.GetParseError(),
layerJson.GetErrorOffset()));
return asyncSystem.createResolvedFuture(
std::move(loadLayersResult));
Expand Down

0 comments on commit 592bc17

Please sign in to comment.