Home | History | Annotate | Download | only in multimap.ops

Lines Matching defs:PC

225     typedef PrivateConstructor PC;
226 typedef std::multimap<PC, double, std::less<>> M;
230 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
231 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
232 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
233 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ));
234 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 ));
235 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 ));
236 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 ));
237 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 ));
238 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 ));