Skip to content

Commit

Permalink
Fix another 32-bit issue, in conversion_array.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivorforce committed Sep 17, 2024
1 parent 2238c83 commit 8e097d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gdconvert/conversion_array.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ va::VArray array_as_varray(const Array& array) {

template <typename C, typename T>
va::VArray packed_as_xarray(const T shape_array) {
uint64_t size = shape_array.size();
auto size = static_cast<std::size_t>(shape_array.size());

xt::static_shape<std::size_t, 1> shape_of_shape = { size };

Expand Down

0 comments on commit 8e097d0

Please sign in to comment.