| 702 | return (uint32_t) c0 | ((uint32_t) c1 << 8) | ((uint32_t) c2 << 16) | ((uint32_t) c3 << 24); |
| 703 | } |
| 704 | uint16_t Helper::pack16(uint8_t c0, uint8_t c1) { |
| 705 | return (uint32_t) c0 | ((uint32_t) c1 << 8); |
| 706 | } |
| 707 | |
| 708 | |
| 709 | // Converts High- and Low-Surrogate to UTF-8 code units, stored in a std::string |
nothing calls this directly
no outgoing calls
no test coverage detected