| 220 | } |
| 221 | |
| 222 | int CAuthManager::NumNonDefaultKeys() const |
| 223 | { |
| 224 | int DefaultCount = std::count_if(std::begin(m_aDefault), std::end(m_aDefault), [](int Slot) { |
| 225 | return Slot >= 0; |
| 226 | }); |
| 227 | return m_vKeys.size() - DefaultCount; |
| 228 | } |
| 229 | |
| 230 | CRconRole *CAuthManager::FindRole(const char *pName) |
| 231 | { |
no outgoing calls
no test coverage detected