| 142 | } |
| 143 | |
| 144 | void ProfileCache::ForgetProfile(Snowflake user) |
| 145 | { |
| 146 | auto iter = m_profileSets.find(user); |
| 147 | if (iter != m_profileSets.end()) |
| 148 | m_profileSets.erase(iter); |
| 149 | } |
| 150 | |
| 151 | void ProfileCache::RequestExtraData(Snowflake user, Snowflake guild, bool mutualGuilds, bool mutualFriends) |
| 152 | { |
no test coverage detected