| 347 | } |
| 348 | |
| 349 | std::string OHDUtil::int_as_string(int number) { |
| 350 | std::stringstream ss; |
| 351 | ss << number; |
| 352 | return ss.str(); |
| 353 | } |
| 354 | |
| 355 | std::string OHDUtil::password_as_hidden_str(const std::string& pw) { |
| 356 | // Show first character and * for the rest |
nothing calls this directly
no outgoing calls
no test coverage detected