-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor supported regions, large anonymity country codes and other country codes to use std::set #9205
Comments
Verification PASSED on
Ensured that
As per the STR via brave/brave-core#5067 (comment),
However, as per #9823, the Verification passed on
Verification passed on
Verification passed on
|
@jsecretan @tmancey assuming |
Refactor supported regions, large anonymity country codes and other country codes to use
std::set
for:Change
const std::map<int, std::vector<std::string>> kSupportedRegionsSchemas
toconst std::map<int, std::set<std::string>> kSupportedRegionsSchemas
Change
const std::map<std::string, bool> kLargeAnonymityCountryCodes
toconst std::set<std::string> kLargeAnonymityCountryCodes
Change
const std::map<std::string, bool> kOtherCountryCodes
toconst std::set<std::string> kOtherCountryCodes
The text was updated successfully, but these errors were encountered: