| 668 | } |
| 669 | |
| 670 | fs::path GetAbsolutePath(const string& path) { |
| 671 | boost::system::error_code ec; |
| 672 | return canonical(fs::path(path), ec); |
| 673 | } |
| 674 | |
| 675 | void ReadConfigFile(map<string, string>& mapSettingsRet, map<string, vector<string>>& mapMultiSettingsRet) { |
| 676 | fs::ifstream streamConfig(GetConfigFile()); |
no test coverage detected