blob: 0c08025b6425e3a7502f6049155f668e6f680bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-af,v 1.1 2006/05/31 10:25:19 joerg Exp $
--- utility/refcnt_ptr.h.orig 2006-05-31 10:09:27.000000000 +0000
+++ utility/refcnt_ptr.h
@@ -109,7 +109,7 @@ public:
refcnt_ptr(const refcnt_ptr<T2>& rhs) throw()
{
object = rhs.object;
- refcnt = rhs.refCnt;
+ this->refcnt = rhs.refCnt;
increaseCount();
}
|