| 463 | struct Row |
| 464 | { |
| 465 | Row(std::vector<Cell> theCells, float marginBottomRatio = 0.f) : |
| 466 | cells(std::move(theCells)), |
| 467 | marginBottom(marginBottomRatio * keySize) |
| 468 | { |
| 469 | } |
| 470 | |
| 471 | std::vector<Cell> cells; |
| 472 | float marginBottom; |
nothing calls this directly
no outgoing calls
no test coverage detected