* Initializes a new pool with blank lists of names. */
| 33 | * Initializes a new pool with blank lists of names. |
| 34 | */ |
| 35 | SoldierNamePool::SoldierNamePool() : _maleFirst(), _femaleFirst(), _maleLast(), _femaleLast(), _totalWeight(0) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * |
nothing calls this directly
no outgoing calls
no test coverage detected