Showing with 1 addition and 1 deletion.
  1. +1 −1 src/gc/gc.d
2 changes: 1 addition & 1 deletion src/gc/gc.d
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ extern (C) void gc_disable()
extern (C) void gc_collect()
{
if( proxy is null )
return _gc.fullCollect();
return cast(void)_gc.fullCollect();
return proxy.gc_collect();
}

Expand Down