| 42 | } |
| 43 | |
| 44 | void Unload() { |
| 45 | if (data != nullptr) { |
| 46 | ::UnloadFileText(data); |
| 47 | data = nullptr; |
| 48 | length = 0; |
| 49 | } |
| 50 | } |
| 51 | private: |
| 52 | char* data{nullptr}; |
| 53 | unsigned int length{0}; |
nothing calls this directly
no outgoing calls
no test coverage detected