Erase the data of the string.
| 103 | private: |
| 104 | /// Erase the data of the string. |
| 105 | constexpr void erase() noexcept { |
| 106 | if(!obfuscated_) |
| 107 | std::fill(data_.begin(), data_.end(), 0); |
| 108 | } |
| 109 | |
| 110 | /// Encode an array of characters. |
| 111 | /// \param str The string of characters to be encoded. |
nothing calls this directly
no outgoing calls
no test coverage detected