summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2014-06-17 12:37:43 +1000
committerTim Mayberry <mojofunk@gmail.com>2014-06-17 21:29:41 +1000
commit26285a3bc01eda0627802ac8aee4b9e18c937527 (patch)
tree4f9ed028485c37a19ed1b04cc96a4b1d529ee22a
parentdc81ab8640107086c71b910c0a5d9c12f873d27d (diff)
Add default arguments to match those in PathScanner::operator()
-rw-r--r--libs/pbd/pbd/file_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/pbd/file_utils.h b/libs/pbd/pbd/file_utils.h
index 51fb2c1ad1..8a3b014ba5 100644
--- a/libs/pbd/pbd/file_utils.h
+++ b/libs/pbd/pbd/file_utils.h
@@ -102,7 +102,7 @@ find_files_matching_regex (std::vector<std::string>& results,
const std::string& regexp,
bool match_fullpath,
bool return_fullpath,
- long limit,
+ long limit = -1,
bool recurse = false);
/**
@@ -115,7 +115,7 @@ find_files_matching_filter (std::vector<std::string>&,
void *arg,
bool match_fullpath,
bool return_fullpath,
- long limit,
+ long limit = -1,
bool recurse = false);
/**