Searched defs:ConstructorTracker (Results 1 – 2 of 2) sorted by relevance
613 struct ConstructorTracker { struct622 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument625 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() argument629 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() argument633 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() argument638 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() argument653 size_t ConstructorTracker::constructor_called = 0; argument
491 struct ConstructorTracker { struct492 static size_t constructor_called;493 static size_t copy_constructor_called;494 static size_t move_constructor_called;495 static size_t copy_assignment_called;496 static size_t move_assignment_called;499 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument503 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() argument507 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function511 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()[all …]