mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Merge pull request #561 from KristofferC/kc/divide_zero_csvexport
prevent divding by zero `csvexport` when number of zones is 1
This commit is contained in:
commit
c31bda6e8c
@ -337,7 +337,9 @@ int main(int argc, char** argv)
|
|||||||
const auto ss = zone_data.sumSq
|
const auto ss = zone_data.sumSq
|
||||||
- 2. * zone_data.total * avg
|
- 2. * zone_data.total * avg
|
||||||
+ avg * avg * sz;
|
+ avg * avg * sz;
|
||||||
const auto std = sqrt(ss / (sz - 1));
|
double std = 0;
|
||||||
|
if( sz > 1 )
|
||||||
|
std = sqrt(ss / (sz - 1));
|
||||||
values[9] = std::to_string(std);
|
values[9] = std::to_string(std);
|
||||||
|
|
||||||
std::string row = join(values, args.separator);
|
std::string row = join(values, args.separator);
|
||||||
|
Loading…
Reference in New Issue
Block a user