| 128 | } |
| 129 | |
| 130 | void INIParser::GetAllValue(std::vector<std::tuple<std::string, std::string, std::string>> &vals) { |
| 131 | vals.clear(); |
| 132 | for (auto &&kv : impl_->section_key2val) { |
| 133 | vals.push_back(make_tuple(kv.first.first, kv.first.second, kv.second)); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | |
| 138 |
nothing calls this directly
no outgoing calls
no test coverage detected