| 79 | } |
| 80 | |
| 81 | void Bundle::putBool(const std::string& key, bool value) { |
| 82 | this->entries[key] = { |
| 83 | .type = Type::Bool, |
| 84 | .value_bool = value, |
| 85 | .value_string = "" |
| 86 | }; |
| 87 | } |
| 88 | |
| 89 | void Bundle::putInt32(const std::string& key, int32_t value) { |
| 90 | this->entries[key] = { |
no outgoing calls
no test coverage detected