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/Paragraphs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolsrc/src/Paragraphs.cpp') diff --git a/toolsrc/src/Paragraphs.cpp b/toolsrc/src/Paragraphs.cpp index 9494656ed..f14552169 100644 --- a/toolsrc/src/Paragraphs.cpp +++ b/toolsrc/src/Paragraphs.cpp @@ -237,7 +237,7 @@ namespace vcpkg::Paragraphs std::vector load_all_ports(const Files::Filesystem& fs, const fs::path& ports_dir) { std::vector output; - for (auto&& path : fs.non_recursive_find_all_files_in_dir(ports_dir)) + for (auto&& path : fs.get_files_non_recursive(ports_dir)) { Expected source_paragraph = try_load_port(fs, path); if (auto srcpgh = source_paragraph.get()) -- cgit v1.2.3