diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-08-29 21:51:31 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-08-29 21:51:37 -0400 |
| commit | 03910925f06f6127e81de47ff22ce4d24ca565b2 (patch) | |
| tree | 280f12a0b8e28667b4120d1fbc0e00861d4fdfdd /src/error.cpp | |
| parent | 8e939916347888e755d737c579042b034e215aa8 (diff) | |
| download | zig-03910925f06f6127e81de47ff22ce4d24ca565b2.tar.gz zig-03910925f06f6127e81de47ff22ce4d24ca565b2.zip | |
await does not force async if callee is blocking
closes #3067
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 753aeb292a..86df76ed4e 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -56,6 +56,7 @@ const char *err_str(Error err) { case ErrorNoSpaceLeft: return "no space left"; case ErrorNoCCompilerInstalled: return "no C compiler installed"; case ErrorNotLazy: return "not lazy"; + case ErrorIsAsync: return "is async"; } return "(invalid error)"; } |
