| 915 | } |
| 916 | |
| 917 | std::string MuseAthena::bytes_to_string (const uint8_t *data, size_t size) |
| 918 | { |
| 919 | std::ostringstream oss; |
| 920 | for (size_t i = 0; i < size; i++) |
| 921 | { |
| 922 | if (i > 0) |
| 923 | { |
| 924 | oss << " "; |
| 925 | } |
| 926 | oss << static_cast<int> (data[i]); |
| 927 | } |
| 928 | return oss.str (); |
| 929 | } |
nothing calls this directly
no outgoing calls
no test coverage detected