| 22 | using namespace std; |
| 23 | |
| 24 | vector<string> sv(const char* array[], unsigned size) |
| 25 | { |
| 26 | vector<string> r; |
| 27 | for (unsigned i = 0; i < size; ++i) |
| 28 | r.emplace_back(array[i]); |
| 29 | return r; |
| 30 | } |
| 31 | |
| 32 | void test_variable_map() |
| 33 | { |
no test coverage detected