| 592 | } |
| 593 | |
| 594 | inline bool SetFloat(const char *pszFieldName, float value) |
| 595 | { |
| 596 | GETCHECK_FIELD(); |
| 597 | CHECK_FIELD_TYPE(FLOAT); |
| 598 | CHECK_FIELD_NOT_REPEATED(); |
| 599 | |
| 600 | msg->GetReflection()->SetFloat(msg, field, value); |
| 601 | return true; |
| 602 | } |
| 603 | |
| 604 | inline bool GetRepeatedFloat(const char *pszFieldName, int index, float *out) |
| 605 | { |
no outgoing calls
no test coverage detected