Skip to content

Commit

Permalink
Jinwei/fix in memory compile error (#401)
Browse files Browse the repository at this point in the history
* small bug fix

* test ubuntu fail

* formatting

* re-triggering unitest

* add small fix for in_mem_data_store when EXEC_ENV_OLS is enabed
  • Loading branch information
jinwei14 authored Jul 24, 2023
1 parent 5bb07e4 commit 0488c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/in_mem_data_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ template <typename data_t> location_t InMemDataStore<data_t>::load_impl(AlignedF
}
copy_aligned_data_from_file<data_t>(reader, _data, file_num_points, file_dim, _aligned_dim);

return file_num_points;
return (location_t)file_num_points;
}
#endif

Expand Down

0 comments on commit 0488c03

Please sign in to comment.