summaryrefslogtreecommitdiff
path: root/staging/boost/4994-compile-fix-for-Python32-v2.patch
blob: 22613b3f2f11da83c96964e1135085e953decd6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Index: libs/python/src/converter/builtin_converters.cpp
===================================================================
--- libs/python/src/converter/builtin_converters.cpp	(revision 67279)
+++ libs/python/src/converter/builtin_converters.cpp	(working copy)
@@ -431,7 +431,11 @@
           if (!result.empty())
           {
               int err = PyUnicode_AsWideChar(
+#if PY_VERSION_HEX >= 0x03020000
+                  intermediate
+#else
                   (PyUnicodeObject *)intermediate
+#endif
                 , &result[0]
                 , result.size());