pkgsrc-ng/mail/spamprobe/patches/patch-src_includes_Ref.h
2013-09-26 17:14:40 +02:00

23 lines
460 B
C

$NetBSD: patch-src_includes_Ref.h,v 1.1 2012/12/20 21:48:15 joerg Exp $
--- src/includes/Ref.h.orig 2012-12-20 17:44:52.000000000 +0000
+++ 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;
}