static
| 535 | |
| 536 | // static |
| 537 | bool EditableMapObject::ValidatePostCode(string const & postCode) |
| 538 | { |
| 539 | if (postCode.empty()) |
| 540 | return true; |
| 541 | return search::LooksLikePostcode(postCode, false /* IsPrefix */); |
| 542 | } |
| 543 | |
| 544 | // static |
| 545 | bool EditableMapObject::ValidatePhoneList(string const & phone) |
nothing calls this directly
no test coverage detected