| 61 | } |
| 62 | |
| 63 | [[nodiscard]] std::string ToString() const { |
| 64 | return TextFormat( |
| 65 | "Wave(frameCount=%u, sampleRate=%u, sampleSize=%u, channels=%u, data=%p)", |
| 66 | frameCount, sampleRate, sampleSize, channels, data |
| 67 | ); |
| 68 | } |
| 69 | |
| 70 | operator std::string() const { return ToString(); } |
| 71 |
nothing calls this directly
no outgoing calls
no test coverage detected