Use qfcc's new unsigned constant qualifier for UINT_MAX

This commit is contained in:
Jeff Teunissen 2010-12-24 05:09:14 -05:00
parent d2a093ace4
commit b184739f03

View file

@ -4,7 +4,7 @@
#define INT_MAX 2147483648
#define INT_MIN (-INT_MAX - 1)
#define UINT_MAX 4294967295
#define UINT_MAX 4294967295U
enum {
NotFound = INT_MAX ///< A value indicating a requested item can't be found.