Searched defs:ConstructorTracker (Results 1 – 2 of 2) sorted by relevance
523 struct ConstructorTracker { struct524 static size_t constructor_called;525 static size_t copy_constructor_called;526 static size_t move_constructor_called;527 static size_t copy_assignment_called;528 static size_t move_assignment_called;531 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() function535 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function539 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() argument543 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()[all …]
646 struct ConstructorTracker { struct655 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument658 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function662 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() argument666 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() argument671 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() argument686 size_t ConstructorTracker::constructor_called = 0; argument