Home | History | Annotate | Download | only in util.smartptr.shared.cast

Lines Matching defs:count

22     static int count;
24 B() {++count;}
25 B(const B&) {++count;}
26 virtual ~B() {--count;}
29 int B::count = 0;
34 static int count;
36 A() {++count;}
37 A(const A&) {++count;}
38 ~A() {--count;}
41 int A::count = 0;