diff options
Diffstat (limited to 'nihil.posix/execv.cc')
| -rw-r--r-- | nihil.posix/execv.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nihil.posix/execv.cc b/nihil.posix/execv.cc index 63f9698..752a96d 100644 --- a/nihil.posix/execv.cc +++ b/nihil.posix/execv.cc @@ -6,6 +6,7 @@ module; #include <coroutine> #include <expected> +#include <filesystem> #include <format> #include <string> #include <utility> @@ -36,8 +37,6 @@ auto execv::exec(this execv &self) -> std::expected<void, error> } execv::execv(execv &&) noexcept = default; -execv::execv(execv const &) = default; -auto execv::operator=(this execv &, execv &&) -> execv & = default; -auto execv::operator=(this execv &, execv const &) -> execv & = default; +auto execv::operator=(this execv &, execv &&) noexcept -> execv & = default; } // namespace nihil |
