Actually, it turns out the min/max thing was an MSVC issue.

This commit is contained in:
Pavel Krajcevski 2013-03-06 20:57:05 -05:00
parent da010a465f
commit 3d1d1e359f

View file

@ -78,6 +78,11 @@
# include "Windows.h"
#endif
#ifdef _MSC_VER
# undef min
# undef max
#endif // _MSC_VER
#include <algorithm>
#include <cstdio>
#include <cstdlib>