Commit 7fe16e79 authored by Neal Norwitz's avatar Neal Norwitz

Remove forward static reference since it is not required

parent ce3d34dd
...@@ -40,8 +40,6 @@ typedef struct { ...@@ -40,8 +40,6 @@ typedef struct {
} iconvcodecObject; } iconvcodecObject;
PyDoc_STRVAR(iconvcodec_doc, "iconvcodec object"); PyDoc_STRVAR(iconvcodec_doc, "iconvcodec object");
staticforward PyTypeObject iconvcodec_Type;
/* does the chosen internal encoding require /* does the chosen internal encoding require
* byteswapping to get native endianness? * byteswapping to get native endianness?
* 0=no, 1=yes, -1=unknown */ * 0=no, 1=yes, -1=unknown */
...@@ -608,7 +606,7 @@ iconvcodec_repr(PyObject *self) ...@@ -608,7 +606,7 @@ iconvcodec_repr(PyObject *self)
((iconvcodecObject *)self)->encoding); ((iconvcodecObject *)self)->encoding);
} }
statichere PyTypeObject iconvcodec_Type = { static PyTypeObject iconvcodec_Type = {
PyObject_HEAD_INIT(&PyType_Type) PyObject_HEAD_INIT(&PyType_Type)
0, /* Number of items for varobject */ 0, /* Number of items for varobject */
"iconvcodec", /* Name of this type */ "iconvcodec", /* Name of this type */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment