diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-08-05 11:20:30 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-08-05 12:14:19 +0300 |
commit | 1cdb233cedd12069a4aa5d761e20b42e842ec58f (patch) | |
tree | 9f8a50e9e6876f5cd03eb662db949d7b7a67eeb2 /tests/default-options | |
parent | 060bb0b8ca44affa817600f21caa33cf54d5ecad (diff) |
Convert default_options_start() to template function which accepts iterators range
Diffstat (limited to 'tests/default-options')
-rw-r--r-- | tests/default-options/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/default-options/driver.cxx b/tests/default-options/driver.cxx index b3f66bf..009cddb 100644 --- a/tests/default-options/driver.cxx +++ b/tests/default-options/driver.cxx @@ -250,7 +250,7 @@ main (int argc, const char* argv[]) // Deduce a common start directory. // - fs.start = default_options_start (home_dir, dirs); + fs.start = default_options_start (home_dir, dirs.begin (), dirs.end ()); // Load and print the default options. // |