| 447 | } |
| 448 | |
| 449 | void process::write(std::function<void(writer)> pipe_in) |
| 450 | { |
| 451 | #ifndef _WIN32 |
| 452 | impl->check_exec(impl->get_command(), std::move(pipe_in)); |
| 453 | #else |
| 454 | // clang-format off |
| 455 | impl->check_exec(impl->command, impl->cwd.string(), |
| 456 | impl->args, impl->envs, std::move(pipe_in)); |
| 457 | // clang-format on |
| 458 | #endif |
| 459 | } |
| 460 | |
| 461 | } // namespace MIGRAPHX_INLINE_NS |
| 462 | } // namespace migraphx |
no test coverage detected