| 135 | RuntimeShape& operator=(RuntimeShape const&) = delete; |
| 136 | |
| 137 | RuntimeShape() : size_(0) {} |
| 138 | |
| 139 | explicit RuntimeShape(int dimensions_count) : size_(dimensions_count) { |
| 140 | if (dimensions_count > kMaxSmallSize) { |
nothing calls this directly
no test coverage detected