v1.0.0-rc.107 #12

Merged
leonarski_f merged 17 commits from 2511-1.0.0-rc.107 into main 2025-11-24 07:07:32 +01:00
Showing only changes of commit 7613bc2af5 - Show all commits

View File

@@ -6,7 +6,7 @@
inline float sum_to_count(float sum, uint64_t count) {
if (count == 0)
return 0.0f;
return NAN;
else
return sum / (static_cast<float>(count));
}