| 224 | : min_value(min_value), max_value(max_value) {} |
| 225 | |
| 226 | Status Visit(const Scalar&) { |
| 227 | Unreachable(); |
| 228 | return Status::NotImplemented(""); |
| 229 | } |
| 230 | |
| 231 | template <typename ScalarType, typename Type = typename ScalarType::TypeClass> |
| 232 | enable_if_integer<Type, Status> Visit(const ScalarType& scalar) { |
nothing calls this directly
no test coverage detected