MCPcopy Create free account
hub / github.com/OpenHD/OpenHD / int_as_string

Method int_as_string

OpenHD/ohd_common/src/openhd_util.cpp:349–353  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected