Browse Source

CPP: Fix stray bracket in re2 adapter (#2568)

Co-authored-by: Tijana Vislavski Gradina <tijanavg@google.com>
pull/2843/head
Gregor Jasny 3 years ago
committed by GitHub
parent
commit
8a0b8c4e67
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpp/src/phonenumbers/regexp_adapter_re2.cc

+ 1
- 1
cpp/src/phonenumbers/regexp_adapter_re2.cc View File

@ -129,7 +129,7 @@ class RE2RegExp : public RegExp {
matched_string, NULL, NULL, NULL, NULL, NULL);
} else {
return DispatchRE2Call(RE2::PartialMatchN, input_string, utf8_regexp_,
matched_string, NULL, NULL), NULL, NULL, NULL);
matched_string, NULL, NULL, NULL, NULL, NULL);
}
}


Loading…
Cancel
Save