[pypy-commit] pypy py3.5: fix decimal

mattip pypy.commits at gmail.com
Wed Feb 21 17:43:23 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r93861:e7ca5c644d47
Date: 2018-02-22 00:42 +0200
http://bitbucket.org/pypy/pypy/changeset/e7ca5c644d47/

Log:	fix decimal

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
@@ -34,6 +34,8 @@
 #ifdef _MSC_VER
   #if _MSC_VER < 1900
   #include "vcstdint.h"
+  #else
+  #include "stdint.h"
   #endif
   #undef inline
   #define inline __inline


More information about the pypy-commit mailing list