| 1489 | } |
| 1490 | |
| 1491 | void LocalRouterInfo::SetProperty (std::string_view key, std::string_view value) |
| 1492 | { |
| 1493 | auto [it, inserted] = m_Properties.emplace (key, value); |
| 1494 | if (!inserted) |
| 1495 | it->second = value; |
| 1496 | } |
| 1497 | |
| 1498 | void LocalRouterInfo::DeleteProperty (const std::string& key) |
| 1499 | { |
no outgoing calls
no test coverage detected