| 123 | std::string cpp_name = ""; |
| 124 | |
| 125 | hiprtc_program(const std::string& src, const std::string& name = "main.cpp") |
| 126 | : cpp_src(src), cpp_name(name) |
| 127 | { |
| 128 | create_program(); |
| 129 | } |
| 130 | |
| 131 | hiprtc_program(std::vector<hiprtc_src_file> srcs) |
| 132 | { |
nothing calls this directly
no test coverage detected