static */
| 253 | } |
| 254 | |
| 255 | /* static */ void LayoutUtil::ClearLayout(Shape* shape) { |
| 256 | shape->clear_layout(); |
| 257 | for (auto& element_shape : *shape->mutable_tuple_shapes()) { |
| 258 | ClearLayout(&element_shape); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | /* static */ void LayoutUtil::ClearLayout(ProgramShape* program_shape) { |
| 263 | for (auto& parameter_shape : *program_shape->mutable_parameters()) { |
nothing calls this directly
no test coverage detected