| 770 | } |
| 771 | |
| 772 | inline bool SetString(const char *pszFieldName, const char *value) |
| 773 | { |
| 774 | GETCHECK_FIELD(); |
| 775 | CHECK_FIELD_TYPE(STRING); |
| 776 | CHECK_FIELD_NOT_REPEATED(); |
| 777 | |
| 778 | msg->GetReflection()->SetString(msg, field, value); |
| 779 | return true; |
| 780 | } |
| 781 | |
| 782 | inline bool GetRepeatedString(const char *pszFieldName, int index, char *out, int size) |
| 783 | { |
no outgoing calls
no test coverage detected