From 674f525f379691b06cf20287d23b237ba055092d Mon Sep 17 00:00:00 2001 From: edmccard Date: Sat, 14 Apr 2012 11:24:38 -0400 Subject: [PATCH] Workaround for gdc std.conv problem --- test/base.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/base.d b/test/base.d index fd2251f..6072765 100644 --- a/test/base.d +++ b/test/base.d @@ -3414,7 +3414,7 @@ struct CheckOptions op = op[2..$]; if (isNumeric(op)) { - int code = to!int(op, 16); + int code = parse!(int, string)(op, 16); if (code >= 0x00 && code <= 0xFF) { codes6502 ~= [cast(ubyte)code];