Author: Antonio Cuni <[email protected]>
Branch: hpy
Changeset: r98209:b1e1f0479f6b
Date: 2019-12-01 11:47 +0100
http://bitbucket.org/pypy/pypy/changeset/b1e1f0479f6b/

Log:    update_vendored to e481b58; this change was made in the hpy-
        ctypespace branch but needed to be ported to pyhandle/hpy and
        properly vendored

diff --git a/pypy/module/hpy_universal/_vendored/include/universal/hpy.h 
b/pypy/module/hpy_universal/_vendored/include/universal/hpy.h
--- a/pypy/module/hpy_universal/_vendored/include/universal/hpy.h
+++ b/pypy/module/hpy_universal/_vendored/include/universal/hpy.h
@@ -6,7 +6,9 @@
 #include <stdarg.h>
 
 typedef intptr_t HPy_ssize_t;
-typedef struct { HPy_ssize_t _i; } HPy;
+
+struct _HPy_s { HPy_ssize_t _i; };
+typedef struct _HPy_s HPy;
 
 typedef struct _HPyContext_s *HPyContext;
 struct _object;  /* that's PyObject inside CPython */
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to