MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / concat_if_not_empty

Function concat_if_not_empty

src/config.cpp:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#include "recompiler/context.h"
7
8std::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
15std::vector<N64Recomp::ManualFunction> get_manual_funcs(const toml::array* manual_funcs_array) {
16 std::vector<N64Recomp::ManualFunction> ret;

Callers 2

get_data_syms_pathsFunction · 0.70
ConfigMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected