Skip to content

Commit

Permalink
Fix Windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Nov 29, 2024
1 parent 8012a06 commit 68c1a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pixel_aggregator_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ inline std::optional<Stats> PixelAggregator::handle_edge_cases(
stats.nnz = 0;
}
if (metrics.contains("sum")) {
stats.sum = 0;
stats.sum = N{0};
}
return stats;
}
Expand Down

0 comments on commit 68c1a07

Please sign in to comment.