| 40 | } |
| 41 | |
| 42 | void cmSpdxSerializer::AddString(std::string const& key, |
| 43 | std::string const& value) |
| 44 | { |
| 45 | if (!value.empty()) { |
| 46 | CurrentValue[key] = value; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | void cmSpdxSerializer::AddVisitable(std::string const& key, |
| 51 | cmSbomObject const& visitable) |
no test coverage detected