Silence compilation warnings on Windows
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 39dfba9..e42631c 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -2024,11 +2024,11 @@
     );
 
 PyAPI_FUNC(int) _PyUnicode_IsCaseIgnorable(
-    const Py_UCS4 ch         /* Unicode character */
+    Py_UCS4 ch         /* Unicode character */
     );
 
 PyAPI_FUNC(int) _PyUnicode_IsCased(
-    const Py_UCS4 ch         /* Unicode character */
+    Py_UCS4 ch         /* Unicode character */
     );
 
 PyAPI_FUNC(int) _PyUnicode_ToDecimalDigit(