| 3415 | } |
| 3416 | |
| 3417 | bool IGFD::PlacesFeature::GroupStruct::RemovePlace(const std::string& vPlaceName) { |
| 3418 | if (vPlaceName.empty()) { |
| 3419 | return false; |
| 3420 | } |
| 3421 | for (auto places_it = places.begin(); places_it != places.end(); ++places_it) { |
| 3422 | if ((*places_it).name == vPlaceName) { |
| 3423 | places.erase(places_it); |
| 3424 | return true; |
| 3425 | } |
| 3426 | } |
| 3427 | return false; |
| 3428 | } |
| 3429 | #endif // USE_PLACES_FEATURE |
| 3430 | |
| 3431 | IGFD::KeyExplorerFeature::KeyExplorerFeature() = default; |
no test coverage detected