| 3410 | |
| 3411 | template <typename T> |
| 3412 | void Extend(const std::vector<T>& values, std::vector<T>* out) { |
| 3413 | out->insert(out->end(), values.begin(), values.end()); |
| 3414 | } |
| 3415 | |
| 3416 | void InitStaticData() { |
| 3417 | // Signed int types |
no test coverage detected