| 20 | } |
| 21 | |
| 22 | void destination_path(DynamicString &path, ResourceId id) |
| 23 | { |
| 24 | TempAllocator128 ta; |
| 25 | DynamicString id_hex(ta); |
| 26 | id_hex.from_string_id(id); |
| 27 | path::join(path, CROWN_DATA_DIRECTORY, id_hex.c_str()); |
| 28 | } |
| 29 | |
| 30 | void stream_destination_path(DynamicString &path, ResourceId id) |
| 31 | { |
no test coverage detected