| 8 | #include "cmSbomSerializer.h" |
| 9 | |
| 10 | inline void SerializeIfPresent(cmSbomSerializer& s, std::string const& key, |
| 11 | cm::optional<std::string> const& v) |
| 12 | { |
| 13 | if (v) { |
| 14 | s.AddString(key, *v); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | std::string to_string(cmSpdxIntegrityMethod::HashAlgorithmId id) |
| 19 | { |