Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching defs:pair2

184   struct pair2 {
193 pair2 &operator=(const pair2&) = default;
201 pair2 &operator=(pair2&&) = default;
211 pair2(pair2&&) = default;
221 pair2(const pair2&) = default;
233 void foo(const pair &x, const pair2 &x2) {
235 pair2 y2(x2);
236 pair2 y2m(static_cast<pair2&&>(y2));
239 y2m = static_cast<pair2&&>(y2);