clang format

This commit is contained in:
springzfx
2020-05-25 17:03:17 +08:00
parent 16a341205f
commit 221a75ae7b
7 changed files with 83 additions and 60 deletions

View File

@@ -145,9 +145,10 @@ void Config::toRealProgramPath(vector<string> &v) {
for (auto &p : v) {
auto rpath = getRealExistPath(p);
if (!rpath.empty()) tmp.push_back(rpath);
else error("%s not exist or broken link", p.c_str());
else
error("%s not exist or broken link", p.c_str());
}
v=tmp;
v = tmp;
}
} // namespace CGPROXY::CONFIG