Add/Update docs in pbd/file_utils.h

This commit is contained in:
Tim Mayberry 2014-06-24 11:16:38 +10:00 committed by Paul Davis
parent 851db83fc4
commit 6d0cce528e
2 changed files with 40 additions and 13 deletions

View file

@ -259,10 +259,10 @@ find_paths_matching_filter (vector<string>& result,
const Searchpath& paths,
bool (*filter)(const string &, void *),
void *arg,
bool match_fullpath, bool return_fullpath,
bool pass_fullpath, bool return_fullpath,
bool recurse)
{
run_functor_for_paths (result, paths, filter, arg, false, match_fullpath, return_fullpath, recurse);
run_functor_for_paths (result, paths, filter, arg, false, pass_fullpath, return_fullpath, recurse);
}
void
@ -270,10 +270,10 @@ find_files_matching_filter (vector<string>& result,
const Searchpath& paths,
bool (*filter)(const string &, void *),
void *arg,
bool match_fullpath, bool return_fullpath,
bool pass_fullpath, bool return_fullpath,
bool recurse)
{
run_functor_for_paths (result, paths, filter, arg, true, match_fullpath, return_fullpath, recurse);
run_functor_for_paths (result, paths, filter, arg, true, pass_fullpath, return_fullpath, recurse);
}
bool