| 765 | |
| 766 | template <typename T> |
| 767 | enable_if_t<is_null_type<T>::value || is_primitive_ctype<T>::value || |
| 768 | is_base_binary_type<T>::value, |
| 769 | Status> |
| 770 | Visit(const T&) { |
| 771 | result_ = true; |
| 772 | return Status::OK(); |
| 773 | } |
| 774 | |
| 775 | Status Visit(const BinaryViewType&) { |
| 776 | result_ = true; |
nothing calls this directly
no test coverage detected