| 141 | struct DictionaryBuilderCase { |
| 142 | template <typename ValueType, typename Enable = typename ValueType::c_type> |
| 143 | Status Visit(const ValueType&) { |
| 144 | return CreateFor<ValueType>(); |
| 145 | } |
| 146 | |
| 147 | Status Visit(const NullType&) { return CreateFor<NullType>(); } |
| 148 | Status Visit(const BinaryType&) { return CreateFor<BinaryType>(); } |
nothing calls this directly
no test coverage detected