Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions libcxx/src/system_error.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ std::optional<errc> __win_err_to_errc(int err) {
return errc::no_lock_available;
case ERROR_NEGATIVE_SEEK:
return errc::invalid_argument;
case ERROR_NETNAME_DELETED:
return errc::no_such_file_or_directory;
case ERROR_NOACCESS:
return errc::permission_denied;
case ERROR_NOT_ENOUGH_MEMORY:
Expand Down
Loading