Skip to content

Commit

Permalink
Compile fix for DMD 2.065.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Aug 7, 2015
1 parent c5d3208 commit ed739a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/vibe/web/rest.d
Expand Up @@ -608,7 +608,7 @@ private HTTPServerRequestDelegate jsonMethodHandler(alias Func, size_t ridx, T)(
alias PTypes = ParameterTypeTuple!Func;
alias PDefaults = ParameterDefaultValueTuple!Func;
alias RT = ReturnType!(FunctionTypeOf!Func);
static const sroute = intf.staticRoutes[ridx];
static const sroute = RestInterface!T.staticRoutes[ridx];
auto route = intf.routes[ridx];

void handler(HTTPServerRequest req, HTTPServerResponse res)
Expand Down

0 comments on commit ed739a9

Please sign in to comment.