| 874 | } |
| 875 | |
| 876 | string getBreakdownAverage(activity_type activity, const size_t value) |
| 877 | { |
| 878 | auto label = getActivityLabel(activity); |
| 879 | auto result = pad_string(int_to_string(value), 3) + " " + label; |
| 880 | |
| 881 | return result; |
| 882 | } |
| 883 | |
| 884 | size_t getFortActivityCount(const activity_type activity) |
| 885 | { |
nothing calls this directly
no test coverage detected