Home
last modified time | relevance | path

Searched defs:TracedCopy (Results 1 – 1 of 1) sorted by relevance

/llvm-project/libcxx/test/std/algorithms/alg.sorting/
H A Dsortable_helpers.h86 struct TracedCopy { struct
90 constexpr TracedCopy() = default; argument
91 constexpr TracedCopy(int i) : data(i) {} in TracedCopy() argument
92 constexpr TracedCopy(const TracedCopy& other) : copied(other.copied + 1), data(other.data) {} in TracedCopy() function
95 constexpr TracedCopy& operator=(TracedCopy&& other) = delete; argument
105 constexpr bool operator==(const TracedCopy& o) const { return data == o.data; } argument