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

Commit

Permalink
restructure some code so the new if/else logic isn't grumpy
Browse files Browse the repository at this point in the history
  • Loading branch information
braddr committed Aug 27, 2011
1 parent cc4ddf0 commit 5df437f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/gc/gcx.d
Original file line number Diff line number Diff line change
Expand Up @@ -3011,10 +3011,7 @@ struct Gcx
if (!findPool(current.data[i].parent))
{
auto j = prev.find(current.data[i].p);
if (j == OPFAIL)
debug(PRINTF) printf("N");
else
debug(PRINTF) printf(" ");;
debug(PRINTF) printf(j == OPFAIL ? "N" : " ");
current.data[i].print();
}
}
Expand Down

0 comments on commit 5df437f

Please sign in to comment.