diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2015-11-30 19:58:53 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2015-11-30 20:00:39 -0700 |
| commit | 55b8472374eede496b59396dbe253b05b16063e1 (patch) | |
| tree | c2d9be8780e272d4fc6fc1a59b20e9a8c1dab755 /src/error.cpp | |
| parent | ef482ece7c047e898fdc2ea15ba4216c15309d0c (diff) | |
| download | zig-55b8472374eede496b59396dbe253b05b16063e1.tar.gz zig-55b8472374eede496b59396dbe253b05b16063e1.zip | |
refactor code to prepare for multiple files
verbose compiler output is now behind --verbose flag
Diffstat (limited to 'src/error.cpp')
| -rw-r--r-- | src/error.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/error.cpp b/src/error.cpp index e7dab68147..7c3064c143 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -5,6 +5,7 @@ const char *err_str(int err) { case ErrorNone: return "(no error)"; case ErrorNoMem: return "out of memory"; case ErrorInvalidFormat: return "invalid format"; + case ErrorSemanticAnalyzeFail: return "semantic analyze failed"; } return "(invalid error)"; } |
