Fixed warnings on linux

This commit is contained in:
AlexandreRouma
2020-09-20 01:36:25 +02:00
parent 2aaf254565
commit ab8ce4c53f
9 changed files with 59 additions and 93 deletions

View File

@ -32,7 +32,7 @@ namespace config {
}
_path = path;
std::ifstream file(path.c_str());
config << file;
file >> config;
file.close();
}