| 208 | { |
| 209 | |
| 210 | int GenerateRandomNumber() |
| 211 | { |
| 212 | // Note: Read https://isocpp.org/files/papers/n3551.pdf for details. |
| 213 | |
| 214 | static std::mt19937 engine{}; |
| 215 | static std::uniform_int_distribution<> dist{}; |
| 216 | |
| 217 | return dist(engine); |
| 218 | } |
| 219 | |
| 220 | } |
| 221 |
no outgoing calls
no test coverage detected