chore: reformat

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2025-04-29 10:34:42 +03:00
parent 57d3d4815b
commit 5c8481a118
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
20 changed files with 134 additions and 119 deletions

View file

@ -166,7 +166,7 @@ auto HttpMetaCache::evictEntry(MetaEntryPtr entry) -> bool
return true;
}
//returns true on success, false otherwise
// returns true on success, false otherwise
auto HttpMetaCache::evictAll() -> bool
{
bool ret = true;
@ -178,7 +178,7 @@ auto HttpMetaCache::evictAll() -> bool
qCWarning(taskHttpMetaCacheLogC) << "Unexpected missing cache entry" << entry->m_basePath;
}
map.entry_list.clear();
//AND all return codes together so the result is true iff all runs of deletePath() are true
// AND all return codes together so the result is true iff all runs of deletePath() are true
ret &= FS::deletePath(map.base_path);
}
return ret;