| 99 | } |
| 100 | |
| 101 | static int getPercentage(const int n, const int d) |
| 102 | { |
| 103 | return static_cast<int>( |
| 104 | static_cast<float>(n) / static_cast<float>(d) * 100.0); |
| 105 | } |
| 106 | |
| 107 | static string getUnitName(df::unit * unit) |
| 108 | { |
no outgoing calls
no test coverage detected