real fix for VC6

This commit is contained in:
Glenn Maynard
2006-06-24 05:40:12 +00:00
parent 29cea74bdf
commit 87cc6c593f
@@ -30,6 +30,9 @@ template<class T>
inline const T& min(const T &a, const T &b) { return b < a? b:a; }
template<class T, class P>
inline const T& min(const T &a, const T &b, P Pr) { return Pr(b, a)? b:a; }
typedef long int intptr_t;
typedef unsigned long int uintptr_t;
#endif
// HACK: Fake correct scoping rules in VC6.