Destruct an obfuscated string by first erasing its content.
| 67 | |
| 68 | /// Destruct an obfuscated string by first erasing its content. |
| 69 | constexpr ~ObfuscatedString() noexcept { erase(); } |
| 70 | |
| 71 | /// Implicit conversion to a pointer to (const) characters, like a regular string. |
| 72 | operator const char* () noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected