| 201 | struct MakeBuilderImpl { |
| 202 | template <typename T> |
| 203 | enable_if_not_nested<T, Status> Visit(const T& t) { |
| 204 | out.reset(new typename TypeTraits<T>::BuilderType(type, pool)); |
| 205 | return Status::OK(); |
| 206 | } |
| 207 | |
| 208 | Status Visit(const DictionaryType& dict_type) { |
| 209 | DictionaryBuilderCase visitor = {pool, |
nothing calls this directly
no test coverage detected