Commit e8d81c5acf

Andrew Kelley <superjoe30@gmail.com>
2018-02-14 19:55:06
fix build broken by previous commit
1 parent d790670
Changed files (1)
std
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;
     }
 };