From 1e9471a1489156720362ef12e1ec6849ea9b45b6 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Thu, 27 Apr 2017 18:08:52 -0700 Subject: Run clang-format over the cpp files --- toolsrc/src/commands_cache.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'toolsrc/src/commands_cache.cpp') diff --git a/toolsrc/src/commands_cache.cpp b/toolsrc/src/commands_cache.cpp index cb26c6ef9..75de78461 100644 --- a/toolsrc/src/commands_cache.cpp +++ b/toolsrc/src/commands_cache.cpp @@ -1,9 +1,10 @@ #include "pch.h" + +#include "BinaryParagraph.h" +#include "Paragraphs.h" #include "vcpkg_Commands.h" -#include "vcpkg_System.h" #include "vcpkg_Files.h" -#include "Paragraphs.h" -#include "BinaryParagraph.h" +#include "vcpkg_System.h" namespace vcpkg::Commands::Cache { @@ -12,7 +13,8 @@ namespace vcpkg::Commands::Cache std::vector output; for (auto&& path : paths.get_filesystem().get_files_non_recursive(paths.packages)) { - const Expected> pghs = Paragraphs::get_single_paragraph(paths.get_filesystem(), path / "CONTROL"); + const Expected> pghs = + Paragraphs::get_single_paragraph(paths.get_filesystem(), path / "CONTROL"); if (auto p = pghs.get()) { const BinaryParagraph binary_paragraph = BinaryParagraph(*p); @@ -26,7 +28,8 @@ namespace vcpkg::Commands::Cache void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths) { static const std::string example = Strings::format( - "The argument should be a substring to search for, or no argument to display all cached libraries.\n%s", Commands::Help::create_example_string("cache png")); + "The argument should be a substring to search for, or no argument to display all cached libraries.\n%s", + Commands::Help::create_example_string("cache png")); args.check_max_arg_count(1, example); args.check_and_get_optional_command_arguments({}); -- cgit v1.2.3