aboutsummaryrefslogtreecommitdiff
path: root/std/json.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-07-16 13:37:16 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-07-16 13:37:16 -0400
commit558b0b87913dfb6e6b76f5dbe2c36b920302faab (patch)
tree40153dfe995f127577db5e277cbec618aff2c30e /std/json.zig
parent2255f275a0397ac44a5e8bc907643082fe304336 (diff)
parentd3ce9d0643421da77063472cb1124123cda753bb (diff)
downloadzig-558b0b87913dfb6e6b76f5dbe2c36b920302faab.tar.gz
zig-558b0b87913dfb6e6b76f5dbe2c36b920302faab.zip
Merge remote-tracking branch 'origin/master' into llvm7
Diffstat (limited to 'std/json.zig')
-rw-r--r--std/json.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/std/json.zig b/std/json.zig
index 8986034fb4..e62d5a3466 100644
--- a/std/json.zig
+++ b/std/json.zig
@@ -6,9 +6,6 @@ const std = @import("index.zig");
const debug = std.debug;
const mem = std.mem;
-const u1 = @IntType(false, 1);
-const u256 = @IntType(false, 256);
-
// A single token slice into the parent string.
//
// Use `token.slice()` on the input at the current position to get the current slice.