Using leading zeroes allows you to search for "000%" to find non-covered
items.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
LGTM
I am sure a UI expert could suggest us a better way, but this is better than we have now.
tools/sancov/sancov.cc | ||
---|---|---|
497 | probably std::size_t{0} ->0u is enough |
tools/sancov/sancov.cc | ||
---|---|---|
502 | std::string Num = std::to_string(Pct); |
Comment Actions
ptal
tools/sancov/sancov.cc | ||
---|---|---|
497 | Not really. You need 0ul, but that makes this code not cross-platform. |
probably std::size_t{0} ->0u is enough