| 230 | } |
| 231 | |
| 232 | void CompileOptions::absolute_path(DynamicString &abs, const char *path) |
| 233 | { |
| 234 | TempAllocator256 ta; |
| 235 | DynamicString source_dir(ta); |
| 236 | _data_compiler.source_dir(path, source_dir); |
| 237 | |
| 238 | FilesystemDisk source_filesystem(ta); |
| 239 | source_filesystem.set_prefix(source_dir.c_str()); |
| 240 | source_filesystem.absolute_path(abs, path); |
| 241 | } |
| 242 | |
| 243 | void CompileOptions::temporary_path(DynamicString &abs, const char *suffix) |
| 244 | { |
no test coverage detected