From 6a8d1136ad61bff40ecd14119ae0d5fa0e7ceee8 Mon Sep 17 00:00:00 2001 From: Christian Kaiser Date: Thu, 12 Sep 2024 00:21:29 -0300 Subject: [PATCH] Indentation fixes --- base/fs.h | 4 ++-- base/fs_win32.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/base/fs.h b/base/fs.h index 6fa0784a5..7fac0b826 100644 --- a/base/fs.h +++ b/base/fs.h @@ -77,8 +77,8 @@ namespace base { // The name search can be used to match files by extension with something like "*.png" or by exact // match without wildcards. paths list_files(const std::string& path, - ItemType filter = ItemType::All, - const std::string& = "*"); + ItemType filter = ItemType::All, + const std::string& = "*"); // Returns true if the given character is a valud path separator // (any of '\' or '/' characters). diff --git a/base/fs_win32.h b/base/fs_win32.h index e60e4f187..9d5424145 100644 --- a/base/fs_win32.h +++ b/base/fs_win32.h @@ -181,8 +181,8 @@ std::string get_absolute_path(const std::string& path) } paths list_files(const std::string& path, - ItemType filter, - const std::string& match) + ItemType filter, + const std::string& match) { WIN32_FIND_DATA fd; paths files; @@ -191,7 +191,7 @@ paths list_files(const std::string& path, FindExInfoBasic, &fd, (filter == ItemType::Directories) ? FindExSearchLimitToDirectories : - FindExSearchNameMatch, + FindExSearchNameMatch, NULL, 0);