Searched defs:ConstructorTracker (Results 1 – 2 of 2) sorted by relevance
195 struct ConstructorTracker { struct196 static size_t constructor_called;197 static size_t copy_constructor_called;198 static size_t move_constructor_called;199 static size_t copy_assignment_called;200 static size_t move_assignment_called;203 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument207 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function211 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function215 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()[all …]
613 struct ConstructorTracker { struct622 ConstructorTracker(T&& string) : string(string) { argument625 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() argument629 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function633 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() argument638 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() argument653 size_t ConstructorTracker::constructor_called = 0; argument