| 2003 | TemporaryDir::TemporaryDir(PlatformFilename&& path) : path_(std::move(path)) {} |
| 2004 | |
| 2005 | TemporaryDir::~TemporaryDir() { |
| 2006 | ARROW_WARN_NOT_OK(DeleteDirTree(path_).status(), |
| 2007 | "When trying to delete temporary directory"); |
| 2008 | } |
| 2009 | |
| 2010 | SignalHandler::SignalHandler() : SignalHandler(static_cast<Callback>(nullptr)) {} |
| 2011 |
nothing calls this directly
no test coverage detected