| 166 | } |
| 167 | |
| 168 | Company* get(CompanyId id) |
| 169 | { |
| 170 | auto index = enumValue(id); |
| 171 | if (index < Limits::kMaxCompanies) |
| 172 | { |
| 173 | return &rawCompanies()[index]; |
| 174 | } |
| 175 | return nullptr; |
| 176 | } |
| 177 | |
| 178 | CompanyId getControllingId() |
| 179 | { |
no test coverage detected