| 534 | } |
| 535 | |
| 536 | std::string |
| 537 | buildIdPtrToString(const uint8_t* id, ssize_t size) |
| 538 | { |
| 539 | std::stringstream result; |
| 540 | do { |
| 541 | result << std::setfill('0') << std::setw(2) << std::hex << static_cast<int>(*id++); |
| 542 | } while (--size > 0); |
| 543 | return result.str(); |
| 544 | } |
| 545 | |
| 546 | std::string |
| 547 | getBuildId(const std::string& filename) |
no outgoing calls
no test coverage detected