add more corner case tests to float_parse (#11727)

also drop some unused constants

Co-authored-by: Andrew Kelley <andrew@ziglang.org>
This commit is contained in:
Andreas Reischuck
2022-05-27 04:05:53 +02:00
committed by GitHub
parent 41162ed646
commit 5a8b6149fb
2 changed files with 10 additions and 2 deletions

View File

@@ -1,7 +1,5 @@
const std = @import("std");
const parse = @import("parse.zig");
const parseNumber = parse.parseNumber;
const parseInfOrNan = parse.parseInfOrNan;
const convertFast = @import("convert_fast.zig").convertFast;
const convertEiselLemire = @import("convert_eisel_lemire.zig").convertEiselLemire;
const convertSlow = @import("convert_slow.zig").convertSlow;