From b97e001d35d1afed35408b14bbfe85bb926db264 Mon Sep 17 00:00:00 2001 From: CI Bot Date: Mon, 18 Nov 2024 22:34:16 +0000 Subject: [PATCH] Run clang-format --- src/common/file_system/local_file_system.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/file_system/local_file_system.cpp b/src/common/file_system/local_file_system.cpp index ac2023201b..47fd4766eb 100644 --- a/src/common/file_system/local_file_system.cpp +++ b/src/common/file_system/local_file_system.cpp @@ -251,7 +251,8 @@ bool isSubdirectory(const std::filesystem::path& base, const std::filesystem::pa auto basePath = std::filesystem::weakly_canonical(base); auto subPath = std::filesystem::weakly_canonical(sub); - return std::search(subPath.begin(), subPath.end(), basePath.begin(), basePath.end()) == subPath.begin(); + return std::search(subPath.begin(), subPath.end(), basePath.begin(), basePath.end()) == + subPath.begin(); } void LocalFileSystem::removeFileIfExists(const std::string& path) {