summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVictor Leschuk <vleschuk@accesssoftek.com>2018-07-27 09:15:05 +0000
committerVictor Leschuk <vleschuk@accesssoftek.com>2018-07-27 09:15:05 +0000
commitef4fb1985c168a651dd021dd7c9dabed158dd6fa (patch)
tree792d907dc33426d11ecb9ebdb08f94d48f7a0c19 /include
parente9c22aa83fda78888e7e831c1340a4c16dc3fabf (diff)
[Support] Bring std::errc::not_supported to llvm::errc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@338114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Errc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/Errc.h b/include/llvm/Support/Errc.h
index 80bfe2ac2ee..dce42782a0d 100644
--- a/include/llvm/Support/Errc.h
+++ b/include/llvm/Support/Errc.h
@@ -63,6 +63,7 @@ enum class errc {
no_such_process = int(std::errc::no_such_process),
not_a_directory = int(std::errc::not_a_directory),
not_enough_memory = int(std::errc::not_enough_memory),
+ not_supported = int(std::errc::not_supported),
operation_not_permitted = int(std::errc::operation_not_permitted),
permission_denied = int(std::errc::permission_denied),
read_only_file_system = int(std::errc::read_only_file_system),