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

Function string_vector_to_toml

RecompModTool/main.cpp:498–504  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

496}
497
498toml::array string_vector_to_toml(const std::vector<std::string>& input) {
499 toml::array ret{};
500 for (const std::string& str : input) {
501 ret.emplace_back(str);
502 }
503 return ret;
504}
505
506void write_manifest(const std::filesystem::path& path, const ModManifest& manifest) {
507 toml::table output_data{};

Callers 1

write_manifestFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected