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

Commit

Permalink
Merge pull request #1030 from 9rnsr/enforceProp
Browse files Browse the repository at this point in the history
fix property enforcement
  • Loading branch information
MartinNowak committed Nov 20, 2014
2 parents 2a3f73c + c0797fa commit 21455cf
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 21455cf

Please sign in to comment.