diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-11-29 21:15:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-11-29 21:15:33 +0000 |
commit | b31f3cc022a7681cdc79131b929e4c0372c441f9 (patch) | |
tree | f2df985449c6ebbdfb368adf20bd2d76d6ba4e3f /src/sptr.h | |
parent | 3025ed54309f793c6afbcbc9a564f71cc741f2ef (diff) | |
download | libbu++-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | { |