| 256 | // Includes |
| 257 | |
| 258 | void add_include(t_program* program) { |
| 259 | includes_.push_back(program); |
| 260 | } |
| 261 | |
| 262 | void add_include(std::string path, std::string include_site) { |
| 263 | t_program* program = new t_program(path); |
nothing calls this directly
no test coverage detected