aboutsummaryrefslogtreecommitdiff
path: root/src/error.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2018-11-26 20:07:19 -0500
committerAndrew Kelley <andrew@ziglang.org>2018-11-26 20:07:19 -0500
commit0860be03b154e648a963edf26867b23596ed98f0 (patch)
treefe52321c10fce3a432acc2236607ffb640f74651 /src/error.cpp
parentf6cd02be6551f3ca702b76b7ca2ab7567effe680 (diff)
parent67a39a4c99106714588676db0168fef52e0ecd9c (diff)
downloadzig-0860be03b154e648a963edf26867b23596ed98f0.tar.gz
zig-0860be03b154e648a963edf26867b23596ed98f0.zip
Merge branch 'kristate-zig-backport-os_file_read-EISDIR'
Diffstat (limited to 'src/error.cpp')
-rw-r--r--src/error.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/error.cpp b/src/error.cpp
index d0575a8494..10186fbde5 100644
--- a/src/error.cpp
+++ b/src/error.cpp
@@ -33,6 +33,7 @@ const char *err_str(Error err) {
case ErrorSharingViolation: return "sharing violation";
case ErrorPipeBusy: return "pipe busy";
case ErrorPrimitiveTypeNotFound: return "primitive type not found";
+ case ErrorCacheUnavailable: return "cache unavailable";
}
return "(invalid error)";
}