| 540 | } |
| 541 | |
| 542 | inline bool SetBool(const char *pszFieldName, bool value) |
| 543 | { |
| 544 | GETCHECK_FIELD(); |
| 545 | CHECK_FIELD_TYPE(BOOL); |
| 546 | CHECK_FIELD_NOT_REPEATED(); |
| 547 | |
| 548 | msg->GetReflection()->SetBool(msg, field, value); |
| 549 | return true; |
| 550 | } |
| 551 | |
| 552 | inline bool GetRepeatedBool(const char *pszFieldName, int index, bool *out) |
| 553 | { |
no outgoing calls
no test coverage detected