media-libs/libsidplay: remove unused patch.
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Tue, 3 Jan 2017 16:39:36 +0000 (17:39 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Tue, 3 Jan 2017 23:03:58 +0000 (00:03 +0100)
Closes: https://github.com/gentoo/gentoo/pull/3312

media-libs/libsidplay/files/libsidplay-gcc34.patch [deleted file]

diff --git a/media-libs/libsidplay/files/libsidplay-gcc34.patch b/media-libs/libsidplay/files/libsidplay-gcc34.patch
deleted file mode 100644 (file)
index bf59fc9..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
---- src/smart.h
-+++ src/smart.h
-@@ -207,16 +207,16 @@
-     {
-         if ( bufferLen >= 1 )
-         {
--            pBufCurrent = ( bufBegin = buffer );
--            bufEnd = bufBegin + bufferLen;
--            bufLen = bufferLen;
--            status = true;
-+            this->pBufCurrent = ( this->bufBegin = buffer );
-+            this->bufEnd = this->bufBegin + bufferLen;
-+            this->bufLen = bufferLen;
-+            this->status = true;
-         }
-         else
-         {
--            pBufCurrent = bufBegin = bufEnd = 0;
--            bufLen = 0;
--            status = false;
-+            this->pBufCurrent = this->bufBegin = this->bufEnd = 0;
-+            this->bufLen = 0;
-+            this->status = false;
-         }
-     }
- };