diff options
Diffstat (limited to 'dev-python/pyelemental/files/pyelemental-1.2.0-gcc-4.7.patch')
-rw-r--r-- | dev-python/pyelemental/files/pyelemental-1.2.0-gcc-4.7.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/pyelemental/files/pyelemental-1.2.0-gcc-4.7.patch b/dev-python/pyelemental/files/pyelemental-1.2.0-gcc-4.7.patch new file mode 100644 index 00000000000..a0a53a67be2 --- /dev/null +++ b/dev-python/pyelemental/files/pyelemental-1.2.0-gcc-4.7.patch @@ -0,0 +1,25 @@ + value-types.tcc | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/value-types.tcc b/value-types.tcc +index 5afc8d0..a95ccbf 100644 +--- a/value-types.tcc ++++ b/value-types.tcc +@@ -44,7 +44,7 @@ ValueType_t (bool)::ready (PyObject* module) + + ValueType_t (PyObject*)::wrap (const cxxtype& source) + { +- return wrap_copy (&type, source); ++ return ValueType::wrap_copy (&type, source); + } + + +@@ -160,7 +160,7 @@ ValueListType_t (bool)::ready (PyObject* module) + + ValueListType_t (PyObject*)::wrap (const cxxtype& source) + { +- return wrap_copy (&type, source); ++ return ValueListType::wrap_copy (&type, source); + } + + |