| 8225 | } |
| 8226 | |
| 8227 | RandomNumberGenerator::result_type RandomNumberGenerator::operator()( result_type n ) const { |
| 8228 | return std::rand() % n; |
| 8229 | } |
| 8230 | RandomNumberGenerator::result_type RandomNumberGenerator::operator()() const { |
| 8231 | return std::rand() % (max)(); |
| 8232 | } |
nothing calls this directly
no outgoing calls
no test coverage detected