| 37 | } |
| 38 | |
| 39 | int DUtils::Random::RandomInt(int min, int max) { |
| 40 | int d = max - min + 1; |
| 41 | return int(((double)rand() / ((double)RAND_MAX + 1.0)) * d) + min; |
| 42 | } |
| 43 | |
| 44 | // --------------------------------------------------------------------------- |
| 45 | // --------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected