tag 667376 patch
thanks

Matthias Klose <d...@debian.org> (03/04/2012):
> Package: spamprobe
> Version: 1.4d-10
> Severity: important
> Tags: sid wheezy
> User: debian-...@lists.debian.org
> Usertags: ftbfs-gcc-4.7

Here's a patch to fix this FTBFS. No intent to NMU here.

Mraw,
KiBi.
diff -u spamprobe-1.4d/debian/changelog spamprobe-1.4d/debian/changelog
--- spamprobe-1.4d/debian/changelog
+++ spamprobe-1.4d/debian/changelog
@@ -1,3 +1,11 @@
+spamprobe (1.4d-10.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with gcc 4.7 by using “this->” when needed
+    (Closes: #667376).
+
+ -- Cyril Brulebois <k...@debian.org>  Wed, 04 Apr 2012 21:07:36 +0000
+
 spamprobe (1.4d-10) unstable; urgency=low
 
   * Updated translation of debconf template:
only in patch2:
unchanged:
--- spamprobe-1.4d.orig/src/includes/Ref.h
+++ spamprobe-1.4d/src/includes/Ref.h
@@ -189,7 +189,7 @@
 
   CRef<T> &operator=(const CRef<T> &other)
   {
-    assign(other);
+    this->assign(other);
     return *this;
   }
 
@@ -245,7 +245,7 @@
 
   Ref<T> &operator=(const Ref<T> &other)
   {
-    assign(other);
+    this->assign(other);
     return *this;
   }
 

Attachment: signature.asc
Description: Digital signature

Reply via email to