Skip to content

Commit

Permalink
Cast rapidjson errors to int for logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
josephbirkner committed Feb 22, 2024
1 parent 684fecc commit 840bfa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cesium3DTilesContent/src/B3dmToGltfConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void convertB3dmMetadataToGltfStructuralMetadata(
"Error when parsing batch table JSON, error code {} at byte "
"offset "
"{}. Skip parsing metadata",
batchTableJson.GetParseError(),
(int)batchTableJson.GetParseError(),
batchTableJson.GetErrorOffset()));
return;
}
Expand Down

0 comments on commit 840bfa2

Please sign in to comment.