diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-28 19:32:07 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-28 19:54:01 -0700 |
| commit | 03c4c7f8c49d103f57fe12899526b27fc8ccc452 (patch) | |
| tree | cfc72900606995346a987ad25766912d96e959ab /toolsrc/src/vcpkg_Files.cpp | |
| parent | 6684240090512f745bf7530b2fb4bcd31c3fb02e (diff) | |
| download | vcpkg-03c4c7f8c49d103f57fe12899526b27fc8ccc452.tar.gz vcpkg-03c4c7f8c49d103f57fe12899526b27fc8ccc452.zip | |
Use System::println() with no args
Diffstat (limited to 'toolsrc/src/vcpkg_Files.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_Files.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_Files.cpp b/toolsrc/src/vcpkg_Files.cpp index 29da7e684..24edb779f 100644 --- a/toolsrc/src/vcpkg_Files.cpp +++ b/toolsrc/src/vcpkg_Files.cpp @@ -186,11 +186,11 @@ namespace vcpkg::Files void print_paths(const std::vector<fs::path>& paths) { - System::println(""); + System::println(); for (const fs::path& p : paths) { System::println(" %s", p.generic_string()); } - System::println(""); + System::println(); } } |
