| 52 | } |
| 53 | |
| 54 | std::vector<std::string> cmPropertyMap::GetKeys() const |
| 55 | { |
| 56 | std::vector<std::string> keyList; |
| 57 | keyList.reserve(this->Map_.size()); |
| 58 | for (auto const& item : this->Map_) { |
| 59 | keyList.push_back(item.first); |
| 60 | } |
| 61 | std::sort(keyList.begin(), keyList.end()); |
| 62 | return keyList; |
| 63 | } |
| 64 | |
| 65 | std::vector<std::pair<std::string, std::string>> cmPropertyMap::GetList() const |
| 66 | { |
no test coverage detected