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/src/commands_remove.cpp | |
| parent | c3b54a2e7bd0a07068b6a12c29b00b8f57bdb3f1 (diff) | |
| download | vcpkg-1b21fd0f71e5dd428c5f80396aa50ec7e0a9ee00.tar.gz vcpkg-1b21fd0f71e5dd428c5f80396aa50ec7e0a9ee00.zip | |
Files::read_lines() -> Files::read_all_lines()
Diffstat (limited to 'toolsrc/src/commands_remove.cpp')
| -rw-r--r-- | toolsrc/src/commands_remove.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_remove.cpp b/toolsrc/src/commands_remove.cpp index a61435b5d..e6f111d41 100644 --- a/toolsrc/src/commands_remove.cpp +++ b/toolsrc/src/commands_remove.cpp @@ -36,7 +36,7 @@ namespace vcpkg::Commands::Remove pkg.state = InstallState::HALF_INSTALLED; write_update(paths, pkg); - auto maybe_lines = fs.read_all_lines(paths.listfile_path(pkg.package)); + auto maybe_lines = fs.read_lines(paths.listfile_path(pkg.package)); if (auto lines = maybe_lines.get()) { |
