(svn r9081) -Fix(r9080): UINT32_MAX is undefined on MSVC. Use std::numeric_limits<uint32>::max() instead.

This commit is contained in:
KUDr
2007-03-09 23:26:21 +00:00
parent fe2b3e18fb
commit 933c406678
2 changed files with 4 additions and 2 deletions

View File

@@ -20,6 +20,8 @@
# define INT64_MAX 9223372036854775807LL
#endif
#include <limits>
#include <cstdio>
#include <cstddef>
#include <cstring>