| 1361 | class StructType::Impl { |
| 1362 | public: |
| 1363 | explicit Impl(const FieldVector& fields) |
| 1364 | : name_to_index_(CreateNameToIndexMap(fields)) {} |
| 1365 | |
| 1366 | const std::unordered_multimap<std::string_view, int> name_to_index_; |
| 1367 | }; |
nothing calls this directly
no test coverage detected