| 592 | class MakeFormatterImpl { |
| 593 | public: |
| 594 | Result<Formatter> Make(const DataType& type) && { |
| 595 | RETURN_NOT_OK(VisitTypeInline(type, this)); |
| 596 | return std::move(impl_); |
| 597 | } |
| 598 | |
| 599 | // factory implementation |
| 600 | Status Visit(const BooleanType&) { |
no test coverage detected