diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-07-22 14:36:14 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-07-22 14:36:14 -0400 |
| commit | fcadeb50c04199fce2d9675ba2976680c71c67ff (patch) | |
| tree | 6d4bba1ab17adc6f6b42539c2dbeadf166327e37 /src/analyze.hpp | |
| parent | 650e07ebd96d6c476cadc1f7c19856e950ceef9c (diff) | |
| download | zig-fcadeb50c04199fce2d9675ba2976680c71c67ff.tar.gz zig-fcadeb50c04199fce2d9675ba2976680c71c67ff.zip | |
fix multiple coroutines existing clobbering each other
Diffstat (limited to 'src/analyze.hpp')
| -rw-r--r-- | src/analyze.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.hpp b/src/analyze.hpp index 3f226080b5..57f4452104 100644 --- a/src/analyze.hpp +++ b/src/analyze.hpp @@ -247,6 +247,6 @@ void src_assert(bool ok, AstNode *source_node); bool is_container(ZigType *type_entry); ConstExprValue *analyze_const_value(CodeGen *g, Scope *scope, AstNode *node, ZigType *type_entry, Buf *type_name); -void resolve_llvm_types_fn(CodeGen *g, ZigType *fn_type, ZigFn *fn); +void resolve_llvm_types_fn(CodeGen *g, ZigFn *fn); #endif |
