summaryrefslogtreecommitdiffstats
path: root/games/xmoto/patches/xmoto-amd64_gcc441.diff
diff options
context:
space:
mode:
Diffstat (limited to 'games/xmoto/patches/xmoto-amd64_gcc441.diff')
-rw-r--r--games/xmoto/patches/xmoto-amd64_gcc441.diff35
1 files changed, 0 insertions, 35 deletions
diff --git a/games/xmoto/patches/xmoto-amd64_gcc441.diff b/games/xmoto/patches/xmoto-amd64_gcc441.diff
deleted file mode 100644
index bc0f47e693..0000000000
--- a/games/xmoto/patches/xmoto-amd64_gcc441.diff
+++ /dev/null
@@ -1,35 +0,0 @@
-http://bugs.gentoo.org/284464
-
---- src/DBuffer.h.org 2009-09-10 11:58:28.000000000 +0200
-+++ src/DBuffer.h 2009-09-10 12:07:30.000000000 +0200
-@@ -69,6 +69,8 @@
- void operator >>(unsigned char &c);
- void operator <<(unsigned int n);
- void operator >>(unsigned int &n);
-+ void operator <<(unsigned long n);
-+ void operator >>(unsigned long &n);
- void operator <<(float n);
- void operator >>(float &n);
- void operator <<(std::string s);
-
---- src/DBuffer.cpp.org 2009-09-10 11:58:38.000000000 +0200
-+++ src/DBuffer.cpp 2009-09-10 12:08:18.000000000 +0200
-@@ -210,6 +210,18 @@
- n = (unsigned int) sn;
- }
-
-+ void DBuffer::operator <<(unsigned long n) {
-+ int sn;
-+ sn = (int) (n);
-+ *this << sn;
-+ }
-+
-+ void DBuffer::operator >>(unsigned long &n) {
-+ int sn;
-+ *this >> sn;
-+ n = (unsigned long) sn;
-+ }
-+
- void DBuffer::operator <<(float n) {
- writeBuf_LE((char *)&n, sizeof(float));
- }