Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching defs:pair2

164   struct pair2 {
173 pair2 &operator=(const pair2&) = default;
181 pair2 &operator=(pair2&&) = default;
191 pair2(pair2&&) = default;
201 pair2(const pair2&) = default;
213 void foo(const pair &x, const pair2 &x2) {
215 pair2 y2(x2);
216 pair2 y2m(static_cast<pair2&&>(y2));
219 y2m = static_cast<pair2&&>(y2);