[vcpkg] Reformat and fix headers.

This commit is contained in:
Robert Schumacher 2017-10-04 15:58:05 -07:00
parent a34b6ee16e
commit ddbd57f505
2 changed files with 10 additions and 9 deletions

View File

@ -1,14 +1,8 @@
#pragma once
#include "StatusParagraphs.h"
#include "VcpkgCmdArguments.h"
#include "VcpkgPaths.h"
#include "VersionT.h"
#include "vcpkg_Build.h"
#include "vcpkg_Dependencies.h"
#include <array>
namespace vcpkg::Commands::Export
{
void export_integration_files(const fs::path &raw_exported_dir_path, const VcpkgPaths& paths);
void export_integration_files(const fs::path& raw_exported_dir_path, const VcpkgPaths& paths);
}

View File

@ -1,7 +1,11 @@
#pragma once
#include "vcpkg_Files.h"
#include "VcpkgPaths.h"
#include "vcpkg_Dependencies.h"
#include "vcpkg_Files.h"
#include <string>
#include <vector>
namespace vcpkg::Commands::Export::IFW
{
@ -14,5 +18,8 @@ namespace vcpkg::Commands::Export::IFW
Optional<std::string> maybe_installer_file_path;
};
void do_export(const std::vector<Dependencies::ExportPlanAction> &export_plan, const std::string &export_id, const Options &ifw_options, const VcpkgPaths& paths);
void do_export(const std::vector<Dependencies::ExportPlanAction>& export_plan,
const std::string& export_id,
const Options& ifw_options,
const VcpkgPaths& paths);
}