aboutsummaryrefslogtreecommitdiff
path: root/libbutl/filesystem.mxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-09-28 20:45:34 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-09-28 20:45:34 +0300
commit55764e395c453b537c08c1e5cadfbb2ddd349279 (patch)
treeb9615793677bb9e00434356570fcffc547cafddb /libbutl/filesystem.mxx
parent8f14a22e5bbb71d90577b35a09ba8ffae04bfe9c (diff)
Swap entry and pattern parameters in path_match()
Diffstat (limited to 'libbutl/filesystem.mxx')
-rw-r--r--libbutl/filesystem.mxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbutl/filesystem.mxx b/libbutl/filesystem.mxx
index 24922a1..261b985 100644
--- a/libbutl/filesystem.mxx
+++ b/libbutl/filesystem.mxx
@@ -775,7 +775,7 @@ LIBBUTL_MODEXPORT namespace butl
// directory separator).
//
LIBBUTL_SYMEXPORT bool
- path_match (const std::string& pattern, const std::string& name);
+ path_match (const std::string& name, const std::string& pattern);
// Return true if path entry matches pattern. Note that the match is
// performed literally, with no paths normalization being performed. The
@@ -786,8 +786,8 @@ LIBBUTL_MODEXPORT namespace butl
// wildcard sequences (see path_search() for details).
//
LIBBUTL_SYMEXPORT bool
- path_match (const path& pattern,
- const path& entry,
+ path_match (const path& entry,
+ const path& pattern,
const dir_path& start = dir_path (),
path_match_flags = path_match_flags::none);