diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-09-09 18:07:11 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-09-09 18:38:41 -0400 |
| commit | 173fc842c4eb1da6ca07a4ab6026c4c62bc8c09b (patch) | |
| tree | a1bd31418545430c0c60fdebf00238d0034ae05d /src/error.cpp | |
| parent | b4d5d4d1748d25efa6197914a36e276e93509f57 (diff) | |
| download | zig-173fc842c4eb1da6ca07a4ab6026c4c62bc8c09b.tar.gz zig-173fc842c4eb1da6ca07a4ab6026c4c62bc8c09b.zip | |
basic compiler id hash working
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 8303a80a1d..d9da6e6c52 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -27,6 +27,8 @@ const char *err_str(int err) { case ErrorNegativeDenominator: return "negative denominator"; case ErrorShiftedOutOneBits: return "exact shift shifted out one bits"; case ErrorCCompileErrors: return "C compile errors"; + case ErrorEndOfFile: return "end of file"; + case ErrorIsDir: return "is directory"; } return "(invalid error)"; } |
