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

Lines Matching defs:PC

205     typedef PrivateConstructor PC;
206 typedef std::multimap<PC, double, std::less<>> M;
210 m.insert ( std::make_pair<PC, double> ( PC::make(5), 1 ));
211 m.insert ( std::make_pair<PC, double> ( PC::make(5), 2 ));
212 m.insert ( std::make_pair<PC, double> ( PC::make(5), 3 ));
213 m.insert ( std::make_pair<PC, double> ( PC::make(7), 1 ));
214 m.insert ( std::make_pair<PC, double> ( PC::make(7), 2 ));
215 m.insert ( std::make_pair<PC, double> ( PC::make(7), 3 ));
216 m.insert ( std::make_pair<PC, double> ( PC::make(9), 1 ));
217 m.insert ( std::make_pair<PC, double> ( PC::make(9), 2 ));
218 m.insert ( std::make_pair<PC, double> ( PC::make(9), 3 ));