| 265 | std::shared_ptr<DataType> result; |
| 266 | |
| 267 | Status Visit(const DataType&) { |
| 268 | result = real_type; |
| 269 | return Status::OK(); |
| 270 | } |
| 271 | |
| 272 | template <typename Type, typename PhysicalType = typename Type::PhysicalType> |
| 273 | Status Visit(const Type& type) { |
nothing calls this directly
no test coverage detected