public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in mail-filter/spamprobe/files: spamprobe-1.4d-gcc47.patch
@ 2013-02-19 17:26 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; only message in thread
From: Ryan Hill (dirtyepic) @ 2013-02-19 17:26 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    13/02/19 17:26:44

  Added:                spamprobe-1.4d-gcc47.patch
  Log:
  Fix build with GCC 4.7 (bug #421769).
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 957A8463)

Revision  Changes    Path
1.1                  mail-filter/spamprobe/files/spamprobe-1.4d-gcc47.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamprobe/files/spamprobe-1.4d-gcc47.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-filter/spamprobe/files/spamprobe-1.4d-gcc47.patch?rev=1.1&content-type=text/plain

Index: spamprobe-1.4d-gcc47.patch
===================================================================
 https://bugs.gentoo.org/421769

 ../../src/includes/Ref.h:248:5: error: 'assign' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation
 

 src/includes/Ref.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/src/includes/Ref.h
+++ b/src/includes/Ref.h
@@ -189,7 +189,7 @@ public:
 
   CRef<T> &operator=(const CRef<T> &other)
   {
-    assign(other);
+    this->assign(other);
     return *this;
   }
 
@@ -245,7 +245,7 @@ public:
 
   Ref<T> &operator=(const Ref<T> &other)
   {
-    assign(other);
+    this->assign(other);
     return *this;
   }
 





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-02-19 17:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-19 17:26 [gentoo-commits] gentoo-x86 commit in mail-filter/spamprobe/files: spamprobe-1.4d-gcc47.patch Ryan Hill (dirtyepic)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox