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 | 4571040ea1931c39b537e7a1034d6ca3d5ed2666 (patch) | |
tree | 8871c4440d422ec8d2078c0baf4576daa8ef16a9 /llvm/lib/Support/Windows/system_error.inc | |
parent | 65d8694a4540fe91ad8971650627e3d0935b48ad (diff) | |
download | bcm5719-llvm-4571040ea1931c39b537e7a1034d6ca3d5ed2666.tar.gz bcm5719-llvm-4571040ea1931c39b537e7a1034d6ca3d5ed2666.zip |
Support/FileSystem: Add unique_file and exists implementations.
llvm-svn: 120776
Diffstat (limited to 'llvm/lib/Support/Windows/system_error.inc')
-rw-r--r-- | llvm/lib/Support/Windows/system_error.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Windows/system_error.inc b/llvm/lib/Support/Windows/system_error.inc index 8dc4799e7cf..73304d517fa 100644 --- a/llvm/lib/Support/Windows/system_error.inc +++ b/llvm/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); |