mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-13 12:33:20 +02:00
GCC's deeper inlining at -O2 detects that wsum may be used uninitialized when ReservoirSampler::add() is inlined into JitRebalancer. Debug builds (-Og) don't trigger this because GCC doesn't inline deeply enough. The value is overwritten on the first add() call, so this is purely to satisfy the compiler. |
||
|---|---|---|
| .. | ||
| ReservoirSampler.hpp | ||
| RunningMean.cpp | ||
| RunningMean.hpp | ||
| WeightedMedian.hpp | ||