| 67 | |
| 68 | template <typename T> |
| 69 | enable_if_physical_signed_integer<T, Status> Visit(const T*) { |
| 70 | const auto& scalar = checked_cast<const NumericScalar<T>&>(scalar_); |
| 71 | return OK(writer_.Int64(scalar.value)); |
| 72 | } |
| 73 | |
| 74 | template <typename T> |
| 75 | enable_if_physical_unsigned_integer<T, Status> Visit(const T*) { |
nothing calls this directly
no test coverage detected