aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 {