Argument must be a literal string as we just keep the pointer.
| 967 | { |
| 968 | // Argument must be a literal string as we just keep the pointer. |
| 969 | explicit FileRemover(char const* fileName) : fileName_(fileName) {} |
| 970 | ~FileRemover() { std::remove(fileName_); } |
| 971 | |
| 972 | char const* const fileName_; |
nothing calls this directly
no outgoing calls
no test coverage detected