diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-09-12 11:33:26 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-09-12 11:33:26 -0400 |
| commit | 1caa48c2df63d61b8d2501b3e3ee7c85ee8d89cb (patch) | |
| tree | 596273952517f58477d1aed2da85f2711448412c /src/error.cpp | |
| parent | ff0b7fe29a49a5619b3c2f7fee0baccb979caf2d (diff) | |
| download | zig-1caa48c2df63d61b8d2501b3e3ee7c85ee8d89cb.tar.gz zig-1caa48c2df63d61b8d2501b3e3ee7c85ee8d89cb.zip | |
windows os.cpp implementations
Diffstat (limited to 'src/error.cpp')
| -rw-r--r-- | src/error.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/error.cpp b/src/error.cpp index d503eaa18b..7a9bd963bb 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -30,6 +30,8 @@ const char *err_str(int err) { case ErrorEndOfFile: return "end of file"; case ErrorIsDir: return "is directory"; case ErrorUnsupportedOperatingSystem: return "unsupported operating system"; + case ErrorSharingViolation: return "sharing violation"; + case ErrorPipeBusy: return "pipe busy"; } return "(invalid error)"; } |
