Author: Gert Wollny Description: Work around compile bug with python 3.7.1 Debian-Bug: https://bugs.debian.org/914347 diff --git a/Wrapping/PythonCore/vtkPythonArgs.cxx b/Wrapping/PythonCore/vtkPythonArgs.cxx index 1b1e4b9..682f8b8 100644 --- a/Wrapping/PythonCore/vtkPythonArgs.cxx +++ b/Wrapping/PythonCore/vtkPythonArgs.cxx @@ -102,7 +102,7 @@ bool vtkPythonGetStringValue(PyObject *o, T *&a, const char *exctext) else if (PyUnicode_Check(o)) { #if PY_VERSION_HEX >= 0x03030000 - a = PyUnicode_AsUTF8(o); + a = const_cast(PyUnicode_AsUTF8(o)); return true; #else PyObject *s = _PyUnicode_AsDefaultEncodedString(o, NULL); 35ada8c'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-07-18gnu: nextcloud-client: Fix build....* gnu/packages/sync.scm (nextcloud-client): Fix build. [inputs]: Remove karchive, kconfig, kcoreaddons, kio, and kwidgetsaddons; add karchive-5, kconfig-5, kcoreaddons-5, kio-5, and kwidgetsaddons-5. Change-Id: I30b1003fc77c06dbfc28ddc2846dabed2cdaa2d8 Zheng Junjie