| 1119 | } |
| 1120 | |
| 1121 | inline bool GetMessage(const char *pszFieldName, protobuf::Message **message) |
| 1122 | { |
| 1123 | GETCHECK_FIELD(); |
| 1124 | CHECK_FIELD_TYPE(MESSAGE); |
| 1125 | CHECK_FIELD_NOT_REPEATED(); |
| 1126 | |
| 1127 | *message = msg->GetReflection()->MutableMessage(msg, field); |
| 1128 | |
| 1129 | return true; |
| 1130 | } |
| 1131 | |
| 1132 | inline bool GetRepeatedMessage(const char *pszFieldName, int index, const protobuf::Message **message) |
| 1133 | { |
no outgoing calls
no test coverage detected