| 1985 | FieldPath() = default; |
| 1986 | |
| 1987 | FieldPath(std::vector<int> indices) // NOLINT runtime/explicit |
| 1988 | : indices_(std::move(indices)) {} |
| 1989 | |
| 1990 | FieldPath(std::initializer_list<int> indices) // NOLINT runtime/explicit |
| 1991 | : indices_(std::move(indices)) {} |
no outgoing calls