Searched defs:ConstructorCounted (Results 1 – 1 of 1) sorted by relevance
2561 struct ConstructorCounted { struct2562 explicit ConstructorCounted(int i) : i(i) { ++constructor_calls; } in ConstructorCounted() function2563 bool operator==(int other) const { return i == other; } in operator ==()2565 int i;2566 static int constructor_calls;