Skip to content

Commit

Permalink
Format using clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
dudoslav committed Feb 29, 2024
1 parent 80db0ae commit 91234f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/include/utils/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ bool is_local_directory(const std::string& path) {

bool subdirectory_exists(
const std::string& path, const std::string& subdirectoryName) {
std::string subdirectoryPath = (std::filesystem::path{path} /
std::filesystem::path{subdirectoryName})
.string();
std::string subdirectoryPath =
(std::filesystem::path{path} / std::filesystem::path{subdirectoryName})
.string();
return std::filesystem::is_directory(subdirectoryPath);
}

Expand Down

0 comments on commit 91234f0

Please sign in to comment.