From 26285a3bc01eda0627802ac8aee4b9e18c937527 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Tue, 17 Jun 2014 12:37:43 +1000 Subject: [PATCH] Add default arguments to match those in PathScanner::operator() --- libs/pbd/pbd/file_utils.h | 4 ++-- 1 file 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& 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&, void *arg, bool match_fullpath, bool return_fullpath, - long limit, + long limit = -1, bool recurse = false); /**