From 9b0efcd743bd916f6ddf2691ead804f14623f0df Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 1 Dec 2011 12:04:06 -0500 Subject: [PATCH] int -> size_t for 64 bit --- web.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.d b/web.d index a8163ff..30b642d 100644 --- a/web.d +++ b/web.d @@ -869,7 +869,7 @@ CallInfo parseUrl(in ReflectionInfo* reflection, string url, string defaultFunct /// instantiation should be an object of your ApiProvider type. /// pathInfoStartingPoint is used to make a slice of it, incase you already consumed part of the path info before you called this. -void run(Provider)(Cgi cgi, Provider instantiation, int pathInfoStartingPoint = 0) if(is(Provider : ApiProvider)) { +void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint = 0) if(is(Provider : ApiProvider)) { assert(instantiation !is null); if(instantiation.reflection is null) {