| 162 | } |
| 163 | |
| 164 | std::string |
| 165 | SimpleDeltaRndNumGenerator::RandomHexDigits( int num ) |
| 166 | { |
| 167 | std::string str; |
| 168 | const char* hex1 = AbsRndNumGenerator::get_hex1(); |
| 169 | while (num--) { |
| 170 | int x = random_choice(16, NULL, NULL); |
| 171 | str += hex1[x]; |
| 172 | } |
| 173 | return str; |
| 174 | } |
| 175 | |
| 176 | std::string |
| 177 | SimpleDeltaRndNumGenerator::RandomDigits( int num ) |
nothing calls this directly
no outgoing calls
no test coverage detected