| 4275 | |
| 4276 | template <typename T> |
| 4277 | GeneratorWrapper<std::vector<T>> chunk(size_t size, GeneratorWrapper<T>&& generator) { |
| 4278 | return GeneratorWrapper<std::vector<T>>( |
| 4279 | pf::make_unique<ChunkGenerator<T>>(size, std::move(generator)) |
| 4280 | ); |
| 4281 | } |
| 4282 | |
| 4283 | } // namespace Generators |
| 4284 | } // namespace Catch |
nothing calls this directly
no outgoing calls
no test coverage detected