Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
fix property enforcement
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed Nov 20, 2014
1 parent 2a3f73c commit c0797fa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/gc/gc.d
Original file line number Diff line number Diff line change
Expand Up @@ -2484,7 +2484,7 @@ struct Gcx

if (GC.config.profile)
{
start = currTime();
start = currTime;
}

debug(COLLECT_PRINTF) printf("Gcx.fullcollect()\n");
Expand Down Expand Up @@ -2532,7 +2532,7 @@ struct Gcx

if (GC.config.profile)
{
stop = currTime();
stop = currTime;
prepTime += (stop - start);
start = stop;
}
Expand Down Expand Up @@ -2627,7 +2627,7 @@ struct Gcx

if (GC.config.profile)
{
stop = currTime();
stop = currTime;
markTime += (stop - start);
start = stop;
}
Expand Down Expand Up @@ -2748,7 +2748,7 @@ struct Gcx

if (GC.config.profile)
{
stop = currTime();
stop = currTime;
sweepTime += (stop - start);
start = stop;
}
Expand Down Expand Up @@ -2809,7 +2809,7 @@ struct Gcx

if (GC.config.profile)
{
stop = currTime();
stop = currTime;
recoverTime += (stop - start);
}

Expand Down

0 comments on commit c0797fa

Please sign in to comment.