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/include | |
| parent | bd01f8ce83a0f4fc1963471623971d55d7460972 (diff) | |
| download | vcpkg-8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca.tar.gz vcpkg-8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca.zip | |
write_all_lines() -> write_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 e86a70fac..3fbaad363 100644 --- a/toolsrc/include/vcpkg_Files.h +++ b/toolsrc/include/vcpkg_Files.h @@ -13,7 +13,7 @@ namespace vcpkg::Files virtual std::vector<fs::path> get_files_recursive(const fs::path& dir) const = 0; virtual std::vector<fs::path> get_files_non_recursive(const fs::path& dir) const = 0; - virtual void write_all_lines(const fs::path& file_path, const std::vector<std::string>& lines) = 0; + virtual void write_lines(const fs::path& file_path, const std::vector<std::string>& lines) = 0; virtual void write_contents(const fs::path& file_path, const std::string& data) = 0; virtual void rename(const fs::path& oldpath, const fs::path& newpath) = 0; virtual bool remove(const fs::path& path) = 0; |
