Skip to content

Commit 732af50

Browse files
committed
Fix type of heaptype fields
1 parent 52eee60 commit 732af50

File tree

1 file changed

+4
-4
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/structs

1 file changed

+4
-4
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/structs/CFields.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,10 @@ public enum CFields {
285285
PyHeapTypeObject__as_mapping(PyMappingMethods),
286286
PyHeapTypeObject__as_sequence(PySequenceMethods),
287287
PyHeapTypeObject__as_buffer(PyBufferProcs),
288-
PyHeapTypeObject__ht_name(PyObjectPtr),
289-
PyHeapTypeObject__ht_slots(PyObjectPtr),
290-
PyHeapTypeObject__ht_qualname(PyObjectPtr),
291-
PyHeapTypeObject__ht_module(PyObjectPtr),
288+
PyHeapTypeObject__ht_name(PyObject),
289+
PyHeapTypeObject__ht_slots(PyObject),
290+
PyHeapTypeObject__ht_qualname(PyObject),
291+
PyHeapTypeObject__ht_module(PyObject),
292292

293293
PyBytesObject__ob_shash(Py_hash_t),
294294
PyBytesObject__ob_sval(CHAR_PTR),

0 commit comments

Comments
 (0)