We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebfec19 commit 2b95924Copy full SHA for 2b95924
graalpython/com.oracle.graal.python.cext/include/cpython/unicodeobject.h
@@ -325,7 +325,7 @@ PyAPI_FUNC(int) _PyTruffleUnicode_KIND(PyObject*);
325
#define PyUnicode_KIND(op) ((enum PyUnicode_Kind)_PyTruffleUnicode_KIND(_PyObject_CAST(op)))
326
327
/* Return a void pointer to the raw unicode buffer. */
328
-static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {
+static inline void* _PyUnicode_COMPACT_DATA(PyObject *Py_UNUSED(op)) {
329
// strings are never compact in GraalPy
330
return NULL;
331
}
0 commit comments