commit e8d81c5acf69245f863394f207d63bf07c722bf4 (tree) parent d790670f4c11687fea50c2fd302ca8a815b32d68 Author: Andrew Kelley <superjoe30@gmail.com> Date: Wed, 14 Feb 2018 13:55:06 -0500 fix build broken by previous commit Diffstat:
| M | std/zig/ast.zig | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/std/zig/ast.zig b/std/zig/ast.zig @@ -278,7 +278,7 @@ pub const NodeStringLiteral = struct { base: Node, token: Token, - pub fn iterate(self: &NodeStringLiteral) ?&Node { + pub fn iterate(self: &NodeStringLiteral, index: usize) ?&Node { return null; } };