Skip to content

Commit

Permalink
Fix clang warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Oct 30, 2024
1 parent ba4f6f5 commit 750d5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CesiumGltfReader/src/GltfReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ CesiumAsync::Future<GltfReaderResult> GltfReader::loadGltf(
options,
std::move(result));
})
.thenInWorkerThread([options, this](GltfReaderResult&& result) {
.thenInWorkerThread([options](GltfReaderResult&& result) {
postprocess(result, options);
return std::move(result);
});
Expand Down

0 comments on commit 750d5f9

Please sign in to comment.