Issue #18722: Remove uses of the "register" keyword in C code.

This commit is contained in:
Antoine Pitrou 2013-08-13 20:18:52 +02:00
parent 9eaa3e6732
commit 9ed5f27266
38 changed files with 288 additions and 286 deletions

View file

@ -1834,10 +1834,10 @@ _Py_NewReference(PyObject *op)
}
void
_Py_ForgetReference(register PyObject *op)
_Py_ForgetReference(PyObject *op)
{
#ifdef SLOW_UNREF_CHECK
register PyObject *p;
PyObject *p;
#endif
if (op->ob_refcnt < 0)
Py_FatalError("UNREF negative refcnt");