diff options
author | joerg <joerg> | 2012-12-20 21:48:15 +0000 |
---|---|---|
committer | joerg <joerg> | 2012-12-20 21:48:15 +0000 |
commit | 75a55e6df933d4344aa98e1f87cb9bee5f0cc4b7 (patch) | |
tree | 20fd0f3306122370e5840ade6291cdf2f8df7184 /mail/spamprobe/patches | |
parent | 0116b9b5d8dd9af83202c55027dd79c75213ff51 (diff) | |
download | pkgsrc-75a55e6df933d4344aa98e1f87cb9bee5f0cc4b7.tar.gz |
Fix template look up.
Diffstat (limited to 'mail/spamprobe/patches')
-rw-r--r-- | mail/spamprobe/patches/patch-src_includes_Ref.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mail/spamprobe/patches/patch-src_includes_Ref.h b/mail/spamprobe/patches/patch-src_includes_Ref.h new file mode 100644 index 00000000000..711d144d00e --- /dev/null +++ b/mail/spamprobe/patches/patch-src_includes_Ref.h @@ -0,0 +1,22 @@ +$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; + } + |