| 1459 | #endif |
| 1460 | |
| 1461 | cmsys::Status cmSystemTools::MakeTempDirectory(std::string& path, |
| 1462 | mode_t const* mode) |
| 1463 | { |
| 1464 | if (path.empty()) { |
| 1465 | return cmsys::Status::POSIX(EINVAL); |
| 1466 | } |
| 1467 | return cmSystemTools::MakeTempDirectory(&path.front(), mode); |
| 1468 | } |
| 1469 | |
| 1470 | cmsys::Status cmSystemTools::MakeTempDirectory(char* path, mode_t const* mode) |
| 1471 | { |
nothing calls this directly
no test coverage detected