Browse Source

Update phonenumberutil.cc (#3536)

pull/3537/head
mandlil 1 year ago
committed by GitHub
parent
commit
0bfd32538f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      cpp/src/phonenumbers/phonenumberutil.cc

+ 4
- 4
cpp/src/phonenumbers/phonenumberutil.cc View File

@ -690,6 +690,10 @@ class PhoneNumberRegExpsAndMappings {
// the length of the mobile token.
std::map<int, char> mobile_token_mappings_;
// Set of country codes that doesn't have national prefix, but it has area
// codes.
std::set<int> countries_without_national_prefix_with_area_codes_;
// Set of country codes that have geographically assigned mobile numbers (see
// geo_mobile_countries_ below) which are not based on *area codes*. For
// example, in China mobile numbers start with a carrier indicator, and beyond
@ -697,10 +701,6 @@ class PhoneNumberRegExpsAndMappings {
// to be an area code.
std::set<int> geo_mobile_countries_without_mobile_area_codes_;
// Set of country codes that doesn't have national prefix, but it has area
// codes.
std::set<int> countries_without_national_prefix_with_area_codes_;
// Set of country calling codes that have geographically assigned mobile
// numbers. This may not be complete; we add calling codes case by case, as we
// find geographical mobile numbers or hear from user reports.


Loading…
Cancel
Save