| 160 | } |
| 161 | |
| 162 | TypeHolder CommonNumeric(const std::vector<TypeHolder>& types) { |
| 163 | return CommonNumeric(types.data(), types.size()); |
| 164 | } |
| 165 | |
| 166 | TypeHolder CommonNumeric(const TypeHolder* begin, size_t count) { |
| 167 | DCHECK_GT(count, 0) << "tried to find CommonNumeric type of an empty set"; |
no test coverage detected