diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-12 23:00:42 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-12 23:00:42 -0700 |
| commit | 1b21fd0f71e5dd428c5f80396aa50ec7e0a9ee00 (patch) | |
| tree | ad4214c629e2e5d61fae51545716e86afbb244c7 /toolsrc/include | |
| parent | c3b54a2e7bd0a07068b6a12c29b00b8f57bdb3f1 (diff) | |
| download | vcpkg-1b21fd0f71e5dd428c5f80396aa50ec7e0a9ee00.tar.gz vcpkg-1b21fd0f71e5dd428c5f80396aa50ec7e0a9ee00.zip | |
Files::read_lines() -> Files::read_all_lines()
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg_Files.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Files.h b/toolsrc/include/vcpkg_Files.h index 7bf13e973..7632463b7 100644 --- a/toolsrc/include/vcpkg_Files.h +++ b/toolsrc/include/vcpkg_Files.h @@ -8,7 +8,7 @@ namespace vcpkg::Files __interface Filesystem { virtual Expected<std::string> read_contents(const fs::path& file_path) const = 0; - virtual Expected<std::vector<std::string>> read_all_lines(const fs::path& file_path) const = 0; + virtual Expected<std::vector<std::string>> read_lines(const fs::path& file_path) const = 0; virtual fs::path find_file_recursively_up(const fs::path& starting_dir, const std::string& filename) const = 0; virtual std::vector<fs::path> recursive_find_all_files_in_dir(const fs::path& dir) const = 0; virtual std::vector<fs::path> non_recursive_find_all_files_in_dir(const fs::path& dir) const = 0; |
