| 87 | } |
| 88 | |
| 89 | void Bundle::putInt32(const std::string& key, int32_t value) { |
| 90 | this->entries[key] = { |
| 91 | .type = Type::Int32, |
| 92 | .value_int32 = value, |
| 93 | .value_string = "" |
| 94 | }; |
| 95 | } |
| 96 | |
| 97 | void Bundle::putInt64(const std::string& key, int64_t value) { |
| 98 | this->entries[key] = { |
no outgoing calls
no test coverage detected