Skip to content

Commit

Permalink
Code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLat committed Jul 7, 2015
1 parent 04e7d18 commit 00cbd37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ template <class T, int N=-1> class Pointer {
Set(-1);
}
bool IsGood(){
if (Size() > 0 && index >= 0)
if (index >= 0 && Size() > 0)
return true;
return false;
}
Expand Down

0 comments on commit 00cbd37

Please sign in to comment.