Skip to content

Commit b1472fd

Browse files
committed
Fix PyPy Trashcan
1 parent 730d380 commit b1472fd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

asynctnt/iproto/tupleobj/tupleobj.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ extern "C" {
99
#endif
1010

1111
#if defined(PYPY_VERSION)
12-
# define CPy_TRASHCAN_BEGIN(op, dealloc)
13-
# define CPy_TRASHCAN_END(op)
12+
# define CPy_TRASHCAN_BEGIN(op, dealloc) do {} while(0);
13+
# define CPy_TRASHCAN_END(op) do {} while(0);
1414
#else
1515

1616
#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8

0 commit comments

Comments
 (0)