diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-03 01:21:28 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-03 01:21:28 +0000 |
commit | 3cb84ef65dd417bc152fdaa173127966ca949318 (patch) | |
tree | 133d904ceb53dd1218f7c6857f0087c837960393 /lib/Support/Windows/system_error.inc | |
parent | f4e7b167a09df546b4b339ca9ebc445f747a724a (diff) |
Support/FileSystem: Add unique_file and exists implementations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows/system_error.inc')
-rw-r--r-- | lib/Support/Windows/system_error.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Support/Windows/system_error.inc b/lib/Support/Windows/system_error.inc index 8dc4799e7c..73304d517f 100644 --- a/lib/Support/Windows/system_error.inc +++ b/lib/Support/Windows/system_error.inc @@ -96,6 +96,7 @@ _system_error_category::default_error_condition(int ev) const { MAP_ERR_TO_COND(ERROR_OPERATION_ABORTED, operation_canceled); MAP_ERR_TO_COND(ERROR_OUTOFMEMORY, not_enough_memory); MAP_ERR_TO_COND(ERROR_PATH_NOT_FOUND, no_such_file_or_directory); + MAP_ERR_TO_COND(ERROR_BAD_NETPATH, no_such_file_or_directory); MAP_ERR_TO_COND(ERROR_READ_FAULT, io_error); MAP_ERR_TO_COND(ERROR_RETRY, resource_unavailable_try_again); MAP_ERR_TO_COND(ERROR_SEEK, io_error); |