Casts to appease gcc.

This commit is contained in:
christos 2006-05-14 02:14:33 +00:00
parent 653a86901d
commit 07252f1516
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ extern int errno;
return 0;
// Ordering objects by their address is pretty useless,
// so subclasses should override this is some useful way.
else if (self > anotherObject)
else if ((void *)self > (void *)anotherObject)
return 1;
else
return -1;