Helper to convert a std::filesystem::path to a fextl::string.
| 30 | namespace fextl { |
| 31 | // Helper to convert a std::filesystem::path to a fextl::string. |
| 32 | inline fextl::string string_from_path(const std::filesystem::path& Path) { |
| 33 | return Path.string().c_str(); |
| 34 | } |
| 35 | } // namespace fextl |
| 36 | |
| 37 | static fextl::unique_ptr<FEXCore::Config::Layer> LoadedConfig {}; |