| 28 | namespace |
| 29 | { |
| 30 | inline void write_subpass_info(std::ostringstream &os, const std::vector<SubpassInfo> &value) |
| 31 | { |
| 32 | write(os, value.size()); |
| 33 | for (const SubpassInfo &item : value) |
| 34 | { |
| 35 | write(os, item.input_attachments); |
| 36 | write(os, item.output_attachments); |
| 37 | } |
| 38 | } |
| 39 | } // namespace |
| 40 | |
| 41 | void ResourceRecord::set_data(const std::vector<uint8_t> &data) |
no test coverage detected