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

Lines Matching defs:PC

248     typedef PrivateConstructor PC;
249 typedef std::multimap<PC, double, std::less<>> M;
253 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
254 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
255 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
256 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ));
257 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 ));
258 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 ));
259 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 ));
260 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 ));
261 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 ));