From f615160818c0afc1560b95b262bd30beb420e80d Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Wed, 1 Dec 2021 19:07:07 -0800 Subject: [PATCH] clang-format --- src/vcpkg/binarycaching.cpp | 12 ++++++------ src/vcpkg/vcpkgpaths.cpp | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/vcpkg/binarycaching.cpp b/src/vcpkg/binarycaching.cpp index ce6b235233..39c29b7833 100644 --- a/src/vcpkg/binarycaching.cpp +++ b/src/vcpkg/binarycaching.cpp @@ -1844,12 +1844,12 @@ ExpectedS vcpkg::parse_download_configuration(const Optio } return DownloadManagerConfig{std::move(get_url), - std::vector{}, - std::move(put_url), - std::move(put_headers), - std::move(s.secrets), - s.block_origin, - s.script}; + std::vector{}, + std::move(put_url), + std::move(put_headers), + std::move(s.secrets), + s.block_origin, + s.script}; } ExpectedS>> vcpkg::create_binary_providers_from_configs( diff --git a/src/vcpkg/vcpkgpaths.cpp b/src/vcpkg/vcpkgpaths.cpp index 1fa507d120..76e59738e9 100644 --- a/src/vcpkg/vcpkgpaths.cpp +++ b/src/vcpkg/vcpkgpaths.cpp @@ -579,8 +579,8 @@ namespace vcpkg } downloads = filesystem.almost_canonical(downloads, VCPKG_LINE_INFO); - m_pimpl->m_download_manager = DownloadManager{ - parse_download_configuration(args.asset_sources_template()).value_or_exit(VCPKG_LINE_INFO)}; + m_pimpl->m_download_manager = + DownloadManager{parse_download_configuration(args.asset_sources_template()).value_or_exit(VCPKG_LINE_INFO)}; scripts = process_input_directory(filesystem, root, args.scripts_root_dir.get(), "scripts", VCPKG_LINE_INFO); prefab = root / "prefab";