| 286 | } |
| 287 | |
| 288 | void cmVisualStudioGeneratorOptions::Reparse(std::string const& key) |
| 289 | { |
| 290 | auto i = this->FlagMap.find(key); |
| 291 | if (i == this->FlagMap.end() || i->second.size() != 1) { |
| 292 | return; |
| 293 | } |
| 294 | std::string const original = i->second[0]; |
| 295 | i->second[0] = ""; |
| 296 | this->UnknownFlagField = key; |
| 297 | this->Parse(original); |
| 298 | } |
| 299 | |
| 300 | void cmVisualStudioGeneratorOptions::StoreUnknownFlag(std::string const& flag) |
| 301 | { |
no test coverage detected