Skip to content

Commit

Permalink
Indentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ckaiser committed Sep 12, 2024
1 parent 3815c3c commit 6a8d113
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions base/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
6 changes: 3 additions & 3 deletions base/fs_win32.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -191,7 +191,7 @@ paths list_files(const std::string& path,
FindExInfoBasic,
&fd,
(filter == ItemType::Directories) ? FindExSearchLimitToDirectories :
FindExSearchNameMatch,
FindExSearchNameMatch,
NULL,
0);

Expand Down

0 comments on commit 6a8d113

Please sign in to comment.