summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyside/gcc6.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyside/gcc6.patch')
-rw-r--r--pkgs/development/python-modules/pyside/gcc6.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pyside/gcc6.patch b/pkgs/development/python-modules/pyside/gcc6.patch
deleted file mode 100644
index 440e94508c5..00000000000
--- a/pkgs/development/python-modules/pyside/gcc6.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- Shiboken-1.2.4.org/tests/libsample/simplefile.cpp	2017-08-26 09:06:27.216859143 +0100
-+++ Shiboken-1.2.4/tests/libsample/simplefile.cpp	2017-08-26 09:05:40.037029652 +0100
-@@ -90,13 +90,13 @@
- SimpleFile::exists() const
- {
-     std::ifstream ifile(p->m_filename);
--    return ifile;
-+    return (bool)ifile;
- }
- 
- bool
- SimpleFile::exists(const char* filename)
- {
-     std::ifstream ifile(filename);
--    return ifile;
-+    return (bool)ifile;
- }
-