mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
Use qfcc's new unsigned constant qualifier for UINT_MAX
This commit is contained in:
parent
d2a093ace4
commit
b184739f03
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue