diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-12 23:16:04 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-12 23:16:04 -0700 |
| commit | 8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca (patch) | |
| tree | f8cece941fe8b40a1fcbfff9a5f4e755bd309973 /toolsrc/src/vcpkg_Files.cpp | |
| parent | bd01f8ce83a0f4fc1963471623971d55d7460972 (diff) | |
| download | vcpkg-8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca.tar.gz vcpkg-8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca.zip | |
write_all_lines() -> write_lines()
Diffstat (limited to 'toolsrc/src/vcpkg_Files.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_Files.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg_Files.cpp b/toolsrc/src/vcpkg_Files.cpp index ac32e39f7..7f8a9139d 100644 --- a/toolsrc/src/vcpkg_Files.cpp +++ b/toolsrc/src/vcpkg_Files.cpp @@ -90,7 +90,7 @@ namespace vcpkg::Files return ret; } - virtual void write_all_lines(const fs::path & file_path, const std::vector<std::string>& lines) override + virtual void write_lines(const fs::path & file_path, const std::vector<std::string>& lines) override { std::fstream output(file_path, std::ios_base::out | std::ios_base::binary | std::ios_base::trunc); for (const std::string& line : lines) |
