Skip to content
Snippets Groups Projects
Commit 81ae09a6 authored by Tadej Novak's avatar Tadej Novak
Browse files

Merge branch 'tstreble-main-patch-24637' into 'main'

Fix debug build warning in H5Utils

See merge request atlas/athena!75682
parents ed2fa7b2 1f9a2211
No related branches found
No related tags found
No related merge requests found
......@@ -217,7 +217,7 @@ namespace H5Utils::hist {
const std::string& name,
const auto& func) {
auto flat = get_flat_hist_array<T>(hist, func);
assert(space.getSelectNpoints() == flat.size());
assert(static_cast<std::size_t>(space.getSelectNpoints()) == flat.size());
H5::DataSet dataset = group.createDataSet(
name,
type,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment