aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-02-14 13:55:06 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-02-14 13:55:06 -0500
commite8d81c5acf69245f863394f207d63bf07c722bf4 (patch)
tree2e813fe1a5bc4e75a91d29b63fd2c4da60418106 /std
parentd790670f4c11687fea50c2fd302ca8a815b32d68 (diff)
downloadzig-e8d81c5acf69245f863394f207d63bf07c722bf4.tar.gz
zig-e8d81c5acf69245f863394f207d63bf07c722bf4.zip
fix build broken by previous commit
Diffstat (limited to 'std')
-rw-r--r--std/zig/ast.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/zig/ast.zig b/std/zig/ast.zig
index b6b091973d..3466a24d28 100644
--- 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;
}
};