| 103 | } |
| 104 | |
| 105 | void Bundle::putString(const std::string& key, const std::string& value) { |
| 106 | this->entries[key] = { |
| 107 | .type = Type::String, |
| 108 | .value_bool = false, |
| 109 | .value_string = value |
| 110 | }; |
| 111 | } |
| 112 | |
| 113 | } // namespace |
no outgoing calls
no test coverage detected