| 126 | val_.int64_value_ = value; |
| 127 | } |
| 128 | void SetUInt64Value(uint64 value) { |
| 129 | SetType(FieldDescriptor::CPPTYPE_UINT64); |
| 130 | val_.uint64_value_ = value; |
| 131 | } |
| 132 | void SetInt32Value(int32 value) { |
| 133 | SetType(FieldDescriptor::CPPTYPE_INT32); |
| 134 | val_.int32_value_ = value; |