| 55 | } |
| 56 | |
| 57 | QueryPipeline::QueryPipeline() |
| 58 | : processors(std::make_shared<Processors>()) |
| 59 | { |
| 60 | } |
| 61 | |
| 62 | QueryPipeline::QueryPipeline(QueryPipeline &&) noexcept = default; |
| 63 | QueryPipeline & QueryPipeline::operator=(QueryPipeline &&) = default; /// NOLINT(hicpp-noexcept-move,performance-noexcept-move-constructor) |
nothing calls this directly
no test coverage detected