Home | History | Annotate | Download | only in unique.ptr.single.ctor

Lines Matching refs:count

27     static int count;
28 A() {++count;}
29 A(const A&) {++count;}
30 virtual ~A() {--count;}
33 int A::count = 0;
38 static int count;
39 B() {++count;}
40 B(const B&) {++count;}
41 virtual ~B() {--count;}
44 int B::count = 0;