13
0

Add default arguments to match those in PathScanner::operator()

This commit is contained in:
Tim Mayberry 2014-06-17 12:37:43 +10:00
parent dc81ab8640
commit 26285a3bc0

View File

@ -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);
/**