summaryrefslogtreecommitdiff
path: root/dev-python/shiboken/files/shiboken-1.2.2-gcc6.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/shiboken/files/shiboken-1.2.2-gcc6.patch')
-rw-r--r--dev-python/shiboken/files/shiboken-1.2.2-gcc6.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-python/shiboken/files/shiboken-1.2.2-gcc6.patch b/dev-python/shiboken/files/shiboken-1.2.2-gcc6.patch
deleted file mode 100644
index 65734232472c..000000000000
--- a/dev-python/shiboken/files/shiboken-1.2.2-gcc6.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Bug: https://bugs.gentoo.org/619332
-PR: https://github.com/pyside/Shiboken/pull/84
-
---- a/tests/libsample/simplefile.cpp
-+++ b/tests/libsample/simplefile.cpp
-@@ -90,13 +90,13 @@ bool
- SimpleFile::exists() const
- {
- std::ifstream ifile(p->m_filename);
-- return ifile;
-+ return static_cast<bool>(ifile);
- }
-
- bool
- SimpleFile::exists(const char* filename)
- {
- std::ifstream ifile(filename);
-- return ifile;
-+ return static_cast<bool>(ifile);
- }