Skip to content

Commit

Permalink
Make clang-format enforced change
Browse files Browse the repository at this point in the history
  • Loading branch information
timoore committed May 23, 2023
1 parent 6129026 commit b240bd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CesiumGltfReader/src/GltfReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,9 @@ CesiumAsync::Future<GltfReaderResult> GltfReader::loadGltf(
}
const CesiumJsonReader::ExtensionReaderContext& context =
this->getExtensions();
result = isBinaryGltf(pResponse->data()) ? readBinaryGltf(context, pResponse->data())
: readJsonGltf(context, pResponse->data());
result = isBinaryGltf(pResponse->data())
? readBinaryGltf(context, pResponse->data())
: readJsonGltf(context, pResponse->data());
if (!result.model) {
return asyncSystem.createResolvedFuture(std::move(result));
}
Expand Down

0 comments on commit b240bd8

Please sign in to comment.