| 6 | #include "recompiler/context.h" |
| 7 | |
| 8 | std::filesystem::path concat_if_not_empty(const std::filesystem::path& parent, const std::filesystem::path& child) { |
| 9 | if (!child.empty()) { |
| 10 | return parent / child; |
| 11 | } |
| 12 | return child; |
| 13 | } |
| 14 | |
| 15 | std::vector<N64Recomp::ManualFunction> get_manual_funcs(const toml::array* manual_funcs_array) { |
| 16 | std::vector<N64Recomp::ManualFunction> ret; |
no outgoing calls
no test coverage detected