cleanup on aisle everywhere

This commit is contained in:
2021-08-02 18:18:04 -04:00
parent fde99ef76b
commit 586a774cde
4 changed files with 1 additions and 18 deletions

View File

@@ -30,7 +30,6 @@ int main(int argc, const char * argv[])
std::ifstream fin(configPath);
if(fin.is_open()){
// std::cout<<"config.json is opened successfully"<<std::endl;
std::ifstream jsonText("src/config/config.json");
std::ostringstream tmp;
tmp << jsonText.rdbuf();
@@ -80,9 +79,7 @@ int main(int argc, const char * argv[])
if(fin.fail()){
std::cout<<"config.json load failed"<<std::endl;
} else{
// std::cout<<"config.json loaded"<<std::endl;
}
}
return 0;
}