------------------------------ Random::RandUint
| 58 | // Random::RandUint |
| 59 | // |
| 60 | uint32 Random::RandUint() |
| 61 | { |
| 62 | return std::uniform_int_distribution<uint32>(0u, std::numeric_limits<uint32>::max())(m_MT); |
| 63 | } |
| 64 | |
| 65 | //------------------------------ |
| 66 | // Random::RandUint |
nothing calls this directly
no outgoing calls
no test coverage detected