| 11 | } |
| 12 | |
| 13 | int64_t Bundle::getInt64(const std::string& key) const { |
| 14 | return this->entries.find(key)->second.value_int64; |
| 15 | } |
| 16 | |
| 17 | std::string Bundle::getString(const std::string& key) const { |
| 18 | return this->entries.find(key)->second.value_string; |
nothing calls this directly
no outgoing calls
no test coverage detected