| 866 | } |
| 867 | |
| 868 | string getDwarfAverage(df::unit *unit, const size_t value) |
| 869 | { |
| 870 | auto label = getUnitName(unit); |
| 871 | auto result = pad_string(int_to_string(value), 3) + " " + label; |
| 872 | |
| 873 | return result; |
| 874 | } |
| 875 | |
| 876 | string getBreakdownAverage(activity_type activity, const size_t value) |
| 877 | { |
nothing calls this directly
no test coverage detected