| 1350 | /**************************************************************************************************/ |
| 1351 | |
| 1352 | auto load_yaml(const std::filesystem::path& path) try { |
| 1353 | return YAML::LoadFile(path.c_str()); |
| 1354 | } catch (...) { |
| 1355 | std::cerr << "YAML File: " << path.string() << '\n'; |
| 1356 | throw; |
| 1357 | } |
| 1358 | |
| 1359 | /**************************************************************************************************/ |
| 1360 |
no outgoing calls
no test coverage detected