From 933c40667868c4a57fc16e96f2cc7b2f1508a329 Mon Sep 17 00:00:00 2001 From: KUDr Date: Fri, 9 Mar 2007 23:26:21 +0000 Subject: (svn r9081) -Fix(r9080): UINT32_MAX is undefined on MSVC. Use std::numeric_limits::max() instead. --- src/stdafx.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/stdafx.h') diff --git a/src/stdafx.h b/src/stdafx.h index 3c9419f84..faea27f11 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -20,6 +20,8 @@ # define INT64_MAX 9223372036854775807LL #endif +#include + #include #include #include -- cgit v1.2.3-54-g00ecf