| 130 | val_.uint64_value_ = value; |
| 131 | } |
| 132 | void SetInt32Value(int32 value) { |
| 133 | SetType(FieldDescriptor::CPPTYPE_INT32); |
| 134 | val_.int32_value_ = value; |
| 135 | } |
| 136 | void SetUInt32Value(uint32 value) { |
| 137 | SetType(FieldDescriptor::CPPTYPE_UINT32); |
| 138 | val_.uint32_value_ = value; |