Author: Matti Picus <[email protected]> Branch: py3.5 Changeset: r93860:a745d2c294be Date: 2018-02-21 23:55 -0500 http://bitbucket.org/pypy/pypy/changeset/a745d2c294be/
Log: stdint.h exists for msver 1900 (vs 2017) diff --git a/lib_pypy/_libmpdec/vccompat.h b/lib_pypy/_libmpdec/vccompat.h --- a/lib_pypy/_libmpdec/vccompat.h +++ b/lib_pypy/_libmpdec/vccompat.h @@ -32,7 +32,9 @@ /* Visual C fixes: no stdint.h, no snprintf ... */ #ifdef _MSC_VER + #if _MSC_VER < 1900 #include "vcstdint.h" + #endif #undef inline #define inline __inline #undef random _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
