################################################################### */
| 230 | }; |
| 231 | /* ################################################################### */ |
| 232 | static void StringsToInts(std::vector<std::string> & strings, std::vector<int> & out) { |
| 233 | for(int i=0; i < (long int)strings.size(); ++i) { |
| 234 | out.push_back(atoi(strings[i].c_str())); |
| 235 | } |
| 236 | }; |
| 237 | /* ################################################################### */ |
| 238 | static void StringsToInts(std::vector<std::string*> * strings, std::vector<int> * out) { |
| 239 | for(int i=0; i < (long int)strings->size(); ++i) { |
no test coverage detected