diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-05-24 21:27:44 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-05-24 21:27:44 -0400 |
| commit | 43085417bec447ab31f3454e180213f102885cc8 (patch) | |
| tree | 63f07e0cbb7014de96cf969cf20b6f8d80af9336 /src/analyze.cpp | |
| parent | af7073b7790ad055825ea2805cfd00b69f82f2fe (diff) | |
| download | zig-43085417bec447ab31f3454e180213f102885cc8.tar.gz zig-43085417bec447ab31f3454e180213f102885cc8.zip | |
update github.com/zig-lang to github.com/ziglang
Diffstat (limited to 'src/analyze.cpp')
| -rw-r--r-- | src/analyze.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp index d6137a4286..c59fde8ef6 100644 --- a/src/analyze.cpp +++ b/src/analyze.cpp @@ -1007,7 +1007,7 @@ TypeTableEntry *get_fn_type(CodeGen *g, FnTypeId *fn_type_id) { if (fn_type_id->return_type != nullptr) { ensure_complete_type(g, fn_type_id->return_type); } else { - zig_panic("TODO implement inferred return types https://github.com/zig-lang/zig/issues/447"); + zig_panic("TODO implement inferred return types https://github.com/ziglang/zig/issues/447"); } TypeTableEntry *fn_type = new_type_table_entry(TypeTableEntryIdFn); @@ -1556,7 +1556,7 @@ static TypeTableEntry *analyze_fn_type(CodeGen *g, AstNode *proto_node, Scope *c return g->builtin_types.entry_invalid; } add_node_error(g, proto_node, - buf_sprintf("TODO implement inferred return types https://github.com/zig-lang/zig/issues/447")); + buf_sprintf("TODO implement inferred return types https://github.com/ziglang/zig/issues/447")); return g->builtin_types.entry_invalid; //return get_generic_fn_type(g, &fn_type_id); } |
