diff options
Diffstat (limited to 'media-sound/madman/files/madman-0.93-gcc34.patch')
-rw-r--r-- | media-sound/madman/files/madman-0.93-gcc34.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/media-sound/madman/files/madman-0.93-gcc34.patch b/media-sound/madman/files/madman-0.93-gcc34.patch new file mode 100644 index 000000000000..98992e9ca95c --- /dev/null +++ b/media-sound/madman/files/madman-0.93-gcc34.patch @@ -0,0 +1,12 @@ +diff -Naur madman-0.93.orig/utility/refcnt_ptr.h madman-0.93/utility/refcnt_ptr.h +--- madman-0.93.orig/utility/refcnt_ptr.h 2004-05-20 07:03:13.000000000 -0700 ++++ madman-0.93/utility/refcnt_ptr.h 2004-07-12 12:09:48.000000000 -0700 +@@ -109,7 +109,7 @@ + refcnt_ptr(const refcnt_ptr<T2>& rhs) throw() + { + object = rhs.object; +- refcnt = rhs.refCnt; ++ this->refcnt = rhs.refCnt; + increaseCount(); + } + |