summaryrefslogtreecommitdiff
path: root/textproc/goldendict/files/patch-sptr.hh
blob: 23dcb67ba623a659da3d7d48bfc39378305f5960 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- sptr.hh.orig	2020-11-23 20:39:45 UTC
+++ sptr.hh
@@ -67,9 +67,6 @@ class sptr_base (public)
     }
   }
 
-  unsigned use_count() const
-  { return count; }
-
   sptr_base & operator = ( sptr_base const & other )
   { if ( &other != this ) { reset(); p = other.p; count = other.count; increment(); }
     return * this; }