| 15 | } |
| 16 | |
| 17 | void require(bool condition, const std::string & message) { |
| 18 | if (!condition) { |
| 19 | throw std::runtime_error(message); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | std::string join_ids(const std::vector<int32_t> & ids) { |
| 24 | std::ostringstream oss; |
no outgoing calls
no test coverage detected