From bd01f8ce83a0f4fc1963471623971d55d7460972 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Wed, 12 Apr 2017 23:15:02 -0700 Subject: get_files_recursive()/get_files_non_recursive() --- toolsrc/src/commands_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolsrc/src/commands_help.cpp') diff --git a/toolsrc/src/commands_help.cpp b/toolsrc/src/commands_help.cpp index e2e504fbf..0c6b0c766 100644 --- a/toolsrc/src/commands_help.cpp +++ b/toolsrc/src/commands_help.cpp @@ -7,7 +7,7 @@ namespace vcpkg::Commands::Help void help_topic_valid_triplet(const VcpkgPaths& paths) { System::println("Available architecture triplets:"); - for (auto&& path : paths.get_filesystem().non_recursive_find_all_files_in_dir(paths.triplets)) + for (auto&& path : paths.get_filesystem().get_files_non_recursive(paths.triplets)) { System::println(" %s", path.stem().filename().string()); } -- cgit v1.2.3