diff options
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 | { |