Home | History | Annotate | Download | only in pairs.pair

Lines Matching refs:p2

23         typedef std::pair<double, long> P2;
25 P2 p2 = p1;
26 assert(p2.first == 3);
27 assert(p2.second == 4);
33 typedef std::pair<double, long> P2;
35 constexpr P2 p2 = p1;
36 static_assert(p2.first == 3, "");
37 static_assert(p2.second == 4, "");