| 201 | } |
| 202 | |
| 203 | void CompileOptions::fake_read(const char *path) |
| 204 | { |
| 205 | TempAllocator256 ta; |
| 206 | DynamicString path_str(ta); |
| 207 | path_str = path; |
| 208 | |
| 209 | hash_map::set(_new_dependencies, path_str, 0u); |
| 210 | } |
| 211 | |
| 212 | void CompileOptions::add_requirement(const char *type, const char *name) |
| 213 | { |
no test coverage detected