Thnx. Got myself some new errors ;)
It seems that std.string.indexOf() does not work at compile time. Is there a solution or alternative method for this?

I guess the proper solution would be to make std.string.indexOf work at compile time. It looks like changing the first

if (std.ascii.isASCII(c))

line in std.string.indexOf to

if (!__ctfe && std.ascii.isASCII(c))


Makes it work at compile time.

Reply via email to