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