------------------------------ Random::RandInt
| 83 | // Random::RandInt |
| 84 | // |
| 85 | int32 Random::RandInt() |
| 86 | { |
| 87 | return std::uniform_int_distribution<int32>(0u, std::numeric_limits<int32>::max())(m_MT); |
| 88 | } |
| 89 | |
| 90 | //------------------------------ |
| 91 | // Random::RandInt |
nothing calls this directly
no outgoing calls
no test coverage detected