aboutsummaryrefslogtreecommitdiff
path: root/src/sptr.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-11-29 21:15:33 +0000
committerMike Buland <eichlan@xagasoft.com>2006-11-29 21:15:33 +0000
commitb31f3cc022a7681cdc79131b929e4c0372c441f9 (patch)
treef2df985449c6ebbdfb368adf20bd2d76d6ba4e3f /src/sptr.h
parent3025ed54309f793c6afbcbc9a564f71cc741f2ef (diff)
downloadlibbu++-b31f3cc022a7681cdc79131b929e4c0372c441f9.tar.gz
libbu++-b31f3cc022a7681cdc79131b929e4c0372c441f9.tar.bz2
libbu++-b31f3cc022a7681cdc79131b929e4c0372c441f9.tar.xz
libbu++-b31f3cc022a7681cdc79131b929e4c0372c441f9.zip
Fixed a small issue in the sptr
Diffstat (limited to 'src/sptr.h')
-rw-r--r--src/sptr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sptr.h b/src/sptr.h
index d152fb4..e72644d 100644
--- a/src/sptr.h
+++ b/src/sptr.h
@@ -19,7 +19,7 @@ public:
19 decCount(); 19 decCount();
20 } 20 }
21 21
22 SPtr( SPtr<T> &src ) : 22 SPtr( const SPtr<T> &src ) :
23 pRefCnt( src.pRefCnt ), 23 pRefCnt( src.pRefCnt ),
24 pData( src.pData ) 24 pData( src.pData )
25 { 25 {