-------------------------------------------------------------------------
| 50 | |
| 51 | //------------------------------------------------------------------------- |
| 52 | TemporaryPath::~TemporaryPath() |
| 53 | { |
| 54 | std::error_code error; |
| 55 | if (!fs::remove_all(path_, error)) |
| 56 | { |
| 57 | LOG_ERROR << error; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | //------------------------------------------------------------------------- |
| 62 | TemporaryPath::operator const std::filesystem::path& () const |
nothing calls this directly
no outgoing calls
no test coverage detected