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() function629 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
503 struct ConstructorTracker { struct504 static size_t constructor_called;505 static size_t copy_constructor_called;506 static size_t move_constructor_called;507 static size_t copy_assignment_called;508 static size_t move_assignment_called;511 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument515 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function519 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function523 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()[all …]