Fixed formatting

This commit is contained in:
Bartek Kryza
2022-04-10 13:33:36 +02:00
parent f4d4633ece
commit 8e8945328e
7 changed files with 10 additions and 15 deletions

View File

@@ -202,7 +202,7 @@ template <>
bool starts_with(
const std::filesystem::path &path, const std::filesystem::path &prefix)
{
if(path == prefix)
if (path == prefix)
return true;
const int path_length = std::distance(std::begin(path), std::end(path));